-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
82 lines (65 loc) · 847 Bytes
/
main.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
canvas {
border: 1px solid white;
}
body {
background: black;
max-width: 100vw;
overflow-x: hidden;
color: white;
}
input {
max-width: 100%;
color: black;
}
.center {
text-align: center;
}
.settings {
width: 100%;
height: 96px;
max-width: 1000px;
margin: auto;
}
.button-small {
font-size: 85%;
}
.button-xs-small{
font-size: 75%;
}
.p-1{
padding: 5px;
}
.p-2{
padding: 10px;
}
.mt-1{
margin-top: 5px;
}
.pt-3{
padding-top: 15px;
}
.pl-4{
padding-left: 20px;
}
.m-0{
margin: 0;
}
.m1{
margin: 5px;
}
.col{
float: left;
display: block;
max-width: 400px;
}
.button-success,
.button-error,
.button-warning,
.button-secondary {
color: white;
border-radius: 4px;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
.button-success {
background: rgb(28, 184, 65); /* this is a green */
}