Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Ryan778
GitHub Repository: Ryan778/Ryan778.github.io
Path: blob/master/google-feud-answers/style.css
567 views
1
html{
2
background: #fafafa;
3
cursor: default;
4
font-family: "Open Sans", sans-serif;
5
}
6
::selection {
7
background: #ccddff;
8
}
9
::-moz-selection{
10
background: #ccddff;
11
}
12
body{
13
text-align: center;
14
}
15
.noselect, .tpts, #footer, button{
16
-webkit-user-select: none;
17
-moz-user-select: none;
18
user-select: none;
19
}
20
#header{
21
font-size: 60px;
22
}
23
.alertify-logs{
24
z-index: 9996;
25
}
26
#cl{
27
color: #5589ff;
28
cursor: pointer;
29
}
30
#nojs{
31
background: #fdd;
32
width: 750px;
33
margin: auto;
34
padding: 5px;
35
}
36
button{
37
background-color: rgba(255, 255, 255, 0.5);
38
border: 1px solid #bbb;
39
margin-right: 4px;
40
cursor: pointer;
41
font-size: 14px;
42
padding: 3px 5px;
43
border-radius: 2px;
44
transition: all 0.2s;
45
}
46
button:focus{
47
border-color: #888;
48
outline: none;
49
}
50
button:hover{
51
border-color: #888;
52
}
53
button:active{
54
border-color: #555;
55
}
56
button[disabled]{
57
background-color: rgba(235, 240, 255, 0.5);
58
color: black;
59
cursor: default;
60
}
61
#clear{
62
position: absolute;
63
right: -1px;
64
top: 1px;
65
margin: 0;
66
width: 33px;
67
height: 32px;
68
border: none;
69
background: white;
70
font-weight: 700;
71
}
72
#clear:hover, #clear:focus{
73
background: #eee;
74
}
75
#clear:active{
76
background: #eef;
77
}
78
a{text-decoration: none}
79
80
.c_b{
81
color: rgb(67, 133, 245);
82
}
83
.c_g{
84
color: rgb(16, 157, 89);
85
}
86
.c_r{
87
color: rgb(220, 68, 55);
88
}
89
.c_y{
90
color: rgb(245, 180, 1);
91
}
92
#inputDiv{
93
width: 420px;
94
margin: auto;
95
position: relative;
96
}
97
#input{
98
font-size: 20px;
99
padding: 5px 35px 5px 5px;
100
width: 380px;
101
border: 1px solid #aaa;
102
transition: all 0.2s;
103
outline: none;
104
}
105
#input:hover{
106
border-color: #888;
107
}
108
#input:focus{
109
border-color: #555;
110
}
111
#footer{
112
margin-top: 40px;
113
color: #5589ff;
114
}
115
#footerp{
116
color: black;
117
}
118
#footerp a, a{
119
color: #5589ff;
120
}
121
.footer-action{
122
transition: all 0.2s;
123
}
124
.footer-action:hover{
125
text-decoration: underline;
126
cursor: pointer;
127
}
128
.footer-action:focus, .footer-action:active{
129
background: #e4edff
130
}
131
.lgspace{
132
display: inline-block;
133
width: 25px;
134
}
135
136
.alertify .alert>*, .alertify .dialog>*{
137
width: 100% !important;
138
max-width: 700px;
139
}
140
141
div.awesomplete mark{
142
background-color: #a2d1ff !important;
143
}
144
div.awesomplete{
145
text-align: left;
146
}
147
#table{
148
margin-top: 40px;
149
width: 650px;
150
margin-left: calc(50% - 325px);
151
border-collapse: collapse;
152
background: white;
153
}
154
#table_s{
155
display: none;
156
margin-top: 40px;
157
width: calc(100%);
158
border-collapse: collapse;
159
background: white;
160
}
161
tr, td{
162
border: 1px solid #888;
163
height: 32px;
164
width: 325px;
165
font-size: 16px;
166
}
167
.tres{
168
display: inline-block;
169
width: 315px;
170
text-align: left;
171
}
172
.tans{
173
cursor: pointer;
174
transition: all 0.2s;
175
}
176
.tans:hover{
177
color: #009600;
178
}
179
.tpts{
180
float: right;
181
color: #467fff;
182
}
183
#desc{
184
font-size: 20px;
185
}
186
#desc_upd{
187
margin-top: 3px;
188
display: block;
189
color: #777;
190
}
191
.green{
192
color: #00ad00;
193
}
194
@media only screen and (max-width: 650px) {
195
#header {
196
font-size: 48px;
197
}
198
#table {
199
display: none;
200
}
201
#table_s{
202
display: table;
203
}
204
#inputDiv{
205
width: 100%;
206
}
207
#input{
208
width: 100%;
209
padding: 5px;
210
}
211
#clear{
212
display: none;
213
}
214
.tres{
215
width: calc(100% - 10px)
216
}
217
#resp_sm{
218
font-size: 12px;
219
}
220
}
221
222