-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
99 lines (91 loc) · 1.63 KB
/
styles.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
@import url('https://fonts.googleapis.com/css?family=Concert+One|Space+Mono');
h1 {
font-family: 'BEBAS NEUE', 'Space Mono', bold;
font-size: 40pt;
margin: 0px;
padding: 0px;
}
html {
background-color: white;
}
body {
padding: 0;
margin: 0;
}
.container {
margin-left: 25%;
margin-right: 25%;
background-color: #191818;
border: 2px solid #191818;
border-radius: 20px;
height: auto;
min-height: 99.4% !important;
overflow: hidden;
padding: 0;
margin-top: 0;
margin-bottom: 0;
}
ul {
font-family: 'Space Mono', monospace;
font-size: 18pt;
list-style-type: none;
text-decoration: none;
text-align: left;
user-select: none;
color: white;
margin: 0;
}
li:first-child {
margin-top: 15px;
}
li {
padding: 0;
margin-top: 25px;
cursor: default;
color: white;
}
.done {
text-decoration: line-through;
}
.buttons {
display: flex;
justify-content: center;
}
button {
color: white;
border-width: 0px;
border-color: #191818;
border-radius: 5px;
background-color: #191818;
font-family: 'Space Mono', monospace;
margin: 0;
margin-top: 15px;
padding: 0;
user-select: none;
font-size: 15pt;
cursor: pointer;
}
button:focus {
outline:0;
}
#header {
text-align: center;
margin: 0;
color: #191818;
border-bottom: 1px solid #FCE46E;
background-color: #FCE46E;
padding: 12px 5px;
}
input {
font-family: 'Space Mono', monospace;
font-size: 18pt;
background-color: #191818;
color: white;
border: 0;
width: 95%;
}
i {
cursor: pointer;
padding: 0;
margin-right: 2%;
}