Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jeffalo
GitHub Repository: jeffalo/kahoot-gui
Path: blob/master/index.css
1754 views
1
.console {
2
transition: 0.0.1s;
3
background-color: #f7f7f7;
4
width: 95%;
5
}
6
7
body {
8
padding: 100px;
9
}
10
11
.container-after-titlebar {
12
left: 10px !important;
13
right: 10px !important;
14
}
15
16
.btn {
17
background-color: #7E48BD;
18
border: none;
19
color: white;
20
padding: 15px 32px;
21
text-align: center;
22
text-decoration: none;
23
display: inline-block;
24
font-size: 16px;
25
transition: 0.0.1s;
26
}
27
28
.btn:hover {
29
opacity: 0.8
30
}
31
32
.btn:active {
33
opacity: 1;
34
background-color: #a37cd0;
35
}
36
37
.btn:focus {
38
outline: none;
39
border: none;
40
}
41
42
43
44
45
.form-input {
46
background: transparent;
47
border: none;
48
border-bottom: solid 1px #ccc;
49
padding: 20px 2px 5px;
50
transition: padding 0.4s;
51
width: 80%;
52
}
53
54
input:placeholder-shown+label {
55
color: #aaa;
56
font-size: 14px;
57
top: 15px;
58
}
59
60
input:focus+label,
61
62
input::placeholder {
63
color: transparent;
64
display: none;
65
}
66
67
input:focus,
68
input:not(:placeholder-shown) {
69
border-bottom: solid 1px #7E48BD;
70
outline: none;
71
}
72
73
input::-webkit-outer-spin-button,
74
input::-webkit-inner-spin-button {
75
-webkit-appearance: none;
76
margin: 0;
77
}
78
79
80
.visible,
81
.hidden {
82
overflow: hidden;
83
/* This container should not have padding, borders, etc. */
84
}
85
86
.visible {
87
visibility: visible;
88
opacity: 1;
89
transition: opacity 0.1s linear;
90
}
91
92
.hidden {
93
visibility: hidden;
94
opacity: 0;
95
transition: visibility 0s 0.1s, opacity 0.1s linear;
96
}
97
98
99
.hidden>div {
100
margin-top: -10000px;
101
transition: margin-top 0s 0.1s;
102
}
103
104
105
106
.sidenav {
107
height: 100%;
108
width: 0;
109
position: fixed;
110
z-index: 1;
111
top: 0;
112
right: 0;
113
background-color: #111;
114
overflow-x: hidden;
115
transition: 0.5s;
116
padding-top: 60px;
117
}
118
119
.sidenav a {
120
padding: 8px 8px 8px 32px;
121
text-decoration: none;
122
font-size: 25px;
123
color: #818181;
124
display: block;
125
transition: 0.3s;
126
}
127
128
.sidenav a:hover {
129
color: #f1f1f1;
130
}
131
132
.sidenav .closebtn {
133
position: absolute;
134
top: 30px;
135
right: 25px;
136
font-size: 36px;
137
margin-left: 50px;
138
}
139
140
@media screen and (max-height: 450px) {
141
.sidenav {
142
padding-top: 15px;
143
}
144
145
.sidenav a {
146
font-size: 18px;
147
}
148
}
149