-
Notifications
You must be signed in to change notification settings - Fork 12
/
experiment.css
153 lines (128 loc) · 2.64 KB
/
experiment.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
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
html {
height: 100%;
}
body {
background-image: -o-linear-gradient(41deg, #F8F3F7 0%, #F5F5F0 49%, #DBE1E9 100%);
background-image: -moz-linear-gradient(41deg, #F8F3F7 0%, #F5F5F0 49%, #DBE1E9 100%);
background-image: -webkit-linear-gradient(41deg, #F8F3F7 0%, #F5F5F0 49%, #DBE1E9 100%);
background-image: -ms-linear-gradient(41deg, #F8F3F7 0%, #F5F5F0 49%, #DBE1E9 100%);
background-image: linear-gradient(-49deg, #F8F3F7 0%, #F5F5F0 49%, #DBE1E9 100%);
background-attachment: fixed;
}
.container-fluid {
margin-top: 20px;
background: white;
padding-right: 20px;
padding-left: 20px;
border-radius: 3px;
margin-right: 20px;
margin-left: 20px;
}
@media (max-width: 480px) {
body { padding: 5px; }
.container-fluid {
margin: 0;
}
}
header, #answer {
text-align: center;
}
header {
border-bottom: 1px solid #eee;
}
header h1 {
font-size: 30px;
margin-top: 42px;
margin-bottom: 42px;
}
h1#answer, .question {
margin-top: 42px;
margin-bottom: 0;
}
h1#answer, .question, .question label {
font-size: 24px;
line-height: 32px;
}
#answer-row {
border-top: 1px solid #eee;
margin-top: 52px;
margin-bottom: 52px;
}
footer {
color: #999;
text-align: center;
padding: 40px;
margin-right: -10px;
margin-left: -10px;
}
footer h5 {
text-align: center;
}
footer h5 {
font-weight: normal;
margin: 0;
line-height: 30px;
}
#days.short { color: green; }
#days.medium { color: orange; }
#days.long { color: red; }
.error {
text-shadow: 2px 2px #ff0000;
}
.detail {
display: none;
color: #585858;
}
.error {
display: none;
color: #E16941;
text-shadow: none;
}
.detail, .secondary-calc, .error {
font-size: 14px;
line-height: 20px;
}
.secondary-calc {
color: #4169E1;
display: inline-block;
}
.question input {
width: 100px;
padding: 4px;
outline-color: white;
border: 1px solid #e2e2e2;
border-radius: 3px;
transition: border-color 0.5s;
-webkit-transition: border-color 0.5s;
-moz-transition: border-color 0.5s;
}
.question input:focus {
border-color: #4169E1;
outline: none;
}
.question.validation-error input:focus, .question.validation-error input {
border-color: #e16941;
}
.club-index {
text-transform: uppercase;
}
.bsky {
display: inline-flex;
align-items: center;
}
.bsky .handle {
margin-left: 10px;
}
.share a, .share a:visited {
color: #333;
font-weight: 500;
text-decoration: none;
}
.share a:hover {
text-decoration: none;
color: #555;
}
.share {
text-align: center;
margin: 10px 0;
}