forked from arscan/hexasphere.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
120 lines (98 loc) · 1.53 KB
/
styles.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
body {
color: #fff;
background-color: #000;
font: 12pt sans-serif;
line-height: 1.5em; padding: 0;
margin: 0;
}
a {
color: #ffcc00;
}
img {
display:none;
}
#container {
position:fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: 0;
padding: 0;
overflow: hidden;
}
#banner {
font: 20pt Georgia;
font-weight: bold;
padding-bottom: 5px;
background-color: rgba(0,0,0,.9);
}
#infobox {
position: absolute;
top: 55px;
z-index: 3;
left: 10px;
width: 325px;
background-color: rgba(0,0,0,.8);
padding: 0 20px;
text-align: justify
}
#ident {
position: fixed;
z-index: 5;
bottom: 10px;
font-siz: 10pt;
right: 24px;
}
#ident a{
color: #00eeee;
}
input {
background-color: #eee;
border-radius: 5px;
}
input[type="text"] {
width: 40px;
padding: 5px;
margin: 5px;
}
.generateTitle {
font-size: 1.3em;
padding-bottom: 18px;
}
.generateLabel {
display: inline-block;
width: 255px;
font-size: .9em;
}
.generateForm {
padding-top: 10px;
}
button {
border-radius: 5px;
margin: 15px 3px 20px;
padding: 7px 10px;
}
#generateError {
padding: 0 0 10px 30px;
font-size: .8em;
color: #b96b52;
line-height: 1.3em;
}
@media (max-height: 420px) {
body {
font-size: 10pt;
}
#container {
left: 200px;
}
#infobox {
width: 300px;
}
.generateLabel {
width: 230px;
}
button {
padding: 5px;
}
}