Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
unixpickle
GitHub Repository: unixpickle/kahoot-hack
Path: blob/master/site/assets/main.css
10159 views
1
html, body {
2
background-color: #65bcd4;
3
margin: 0;
4
padding: 0;
5
font-family: sans-serif;
6
}
7
8
h1 {
9
position: relative;
10
text-align: center;
11
margin: 10px 0;
12
padding: 0;
13
color: white;
14
}
15
16
form {
17
position: relative;
18
max-width: 400px;
19
width: calc(100% - 20px);
20
margin: auto auto;
21
}
22
23
input {
24
width: 100%;
25
height: 40px;
26
margin-top: 10px;
27
padding: 0 10px 0 10px;
28
box-sizing: border-box;
29
font-size: 18px;
30
}
31
32
#game-pin {
33
margin-top: 0;
34
}
35
36
.setup-input {
37
border: none;
38
border-radius: 5px;
39
background-color: white;
40
}
41
42
.submit-input {
43
border: none;
44
padding: 0;
45
border-radius: 5px;
46
background-color: #f0f0f0;
47
color: #777;
48
font-weight: 700;
49
cursor: pointer;
50
}
51
52
.submit-input:hover {
53
background-color: #d5d5d5;
54
}
55
56
.submit-input:active {
57
background-color: #d5d5d5;
58
}
59
60
a {
61
position: relative;
62
color: white;
63
display: block;
64
text-align: center;
65
text-decoration: underline;
66
}
67
68
a:hover {
69
color: #d5d5d5;
70
}
71
72