-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
169 lines (137 loc) · 2.23 KB
/
style.css
File metadata and controls
169 lines (137 loc) · 2.23 KB
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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
/***** PAGE *****/
html {
background: #eee;
color: #333;
text-align: center;
padding: 75px 0 25px;
}
body {
margin: 0 10px;
padding: 0;
font-family: rubik, sans-serif;
}
p {
margin-top: 0;
padding: 5px;
}
/***** HEADING *****/
h1 {
padding: 0 5px;
margin: 0 0 20px;
font: 500 40px 'roboto slab', georgia, serif;
}
h2 {
text-align: left;
font: 500 40px 'roboto slab', georgia, serif;
margin: 0 2px;
padding: 20px 0 0;
border-bottom: 2px solid #ddd;
}
h2 #version {
font: 300 20px 'roboto slab', georgia, serif;
margin-left: 5px;
opacity: 0.666;
}
/***** LINKS *****/
a {
color: #E5007E;
text-decoration: none;
}
a:hover {
color: #0d6efd;
}
/***** CONTENT *****/
#content {
background: white;
border: 0 solid #FAFAFA;
border-radius: 7px;
box-shadow: rgba(14, 31, 53, 0.2) 0 2px 4px 0;
padding: 0 5px;
margin: 40px auto 20px;
max-width: 90%;
}
#name {
font: bold 300% 'roboto slab', georgia, serif;
margin: 0;
padding: 0;
}
#description {
margin: 0 auto 15px;
width: 75%;
padding: 0 0 8px;
font-size: 150%;
}
#script {
padding: 0 25px 25px;
background: white;
border: 0 solid #FAFAFA;
border-radius: 7px;
box-shadow: rgba(14, 31, 53, 0.2) 0 2px 4px 0;
width: 75%;
margin: 40px auto 30px;
}
table {
text-align: left;
width: 100%;
}
th, td {
vertical-align: top;
border-bottom: 2px solid #ddd;
}
th {
padding-right: 20px;
white-space: nowrap;
}
.header td {
padding-top: 20px;
font: 500 30px 'roboto slab', georgia, serif;
}
.dice {
cursor: pointer;
}
/***** FOOTER *****/
#footer {
margin: 0 auto 25px;
max-width: 50%;
}
#footer p {
padding: 5px 0;
margin: 0;
}
/***** CONTROLS *****/
select, input {
font-family: rubik, sans-serif;
max-width: 100%;
}
/********** BUTTONS **********/
input[type="button"] {
color: #fff;
padding: 5px 8px;
cursor: pointer;
border: 0;
border-radius: 5px;
opacity: 0.75;
margin: 8px 1px 0;
font-size: 24px;
background: #005EB5;
border-bottom: 3px solid #3399FF;
}
input[type="button"]:hover {
opacity: 1;
}
input[type="button"].selected {
background: #E5007E;
border-bottom: 3px solid #F17EBD;
}
#diamond {
font-size: 125%;
}
/* IMPROVED MOBILE COMPLIANCE */
@media (max-width: 800px) {
#script {
width: auto;
}
th {
white-space: normal;
}
}