forked from ashenwolf/jp2ua-transliterate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lbt.css
102 lines (83 loc) · 1.91 KB
/
lbt.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
@font-face {
font-family: Noto Sans;
src: url('NotoSans-Regular.ttf');
}
@font-face {
font-family: Noto Sans Linear B;
src: url('NotoSansLinearB-Regular.ttf');
}
body {background: url('bg.jpg') no-repeat;}
.lbt.overlay {
position: absolute; /* important */
top: 0px; /* start from top */
left: 0px; /* start from left */
height: 100%; /* cover the whole page */
width: 100%; /* cover the whole page */
display: none; /* don't show it '*/
/* styling bellow */
background-color: black;
z-index: 1000;
}
.lbt.window {
margin-top: 3em;
display: none; /* don't show it */
/* styling bellow */
color: #fff;
top: 0;
border: 1px solid gray;
background: #fff;
color: black;
z-index: 1001;
padding: 5px 30px 10px 30px;
-moz-border-radius-topleft: 0px;
-moz-border-radius-topright: 0px;
-moz-border-radius-bottomright: 10px;
-moz-border-radius-bottomleft: 10px;
-webkit-border-radius: 0px 0px 10px 10px;
border-radius: 0px 0px 10px 10px;
-webkit-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
-moz-box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
box-shadow: 2px 2px 3px 2px rgba(0, 0, 0, 0.1);
}
.lbt.window label {
font-size: small;
}
#source {
height: 200px;
font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
}
#destination {
height:200px;
font-size:2.5em;
font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
}
pre {
width:400px;
border: 1px solid black;
box-shadow: 1px 3px 5px;
padding: 1em;
background-color: #F0F0F0;
font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;
}
h3 {
margin-bottom: -5px
}
a {
text-decoration: none;
color: gray;
}
a:hover {
color: red;
}
span {
}
h2 {
margin-bottom: -1px
}
div#wrapper {
width: 700px;
max-width: 90%;
margin-left: auto;
margin-right: auto;
}
input { font-family: "Noto Sans", "Noto Sans Linear B", sans-serif;}