-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
94 lines (80 loc) · 1.15 KB
/
style.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
@font-face {
font-family: monofont;
src: url(assets/eirian.ttf);
}
* {
margin: 0;
padding: 0;
font-family: monofont, "Courier New", Courier, monospace;
}
html,
body {
width: 100%;
height: 100vh;
}
body {
background: #141414;
color: white;
}
.center {
transform: translate(-50%, -50%);
position: absolute;
top: 50%;
left: 50%;
text-align: center;
width: 80%;
}
.title h1 {
font-size: 60px;
}
.title h1::before {
content: "<";
}
.title h1::after {
content: ">";
}
.title p {
font-size: 20px;
}
.title button {
padding: 20px 40px;
margin: 40px;
cursor: pointer;
font-size: 25px;
outline: none;
background: rgba(0, 0, 0, 0.4);
border: 2px solid lime;
color: white;
}
.title button:hover {
border-color: aqua;
}
input {
padding: 8px;
outline: none;
border: none;
background: rgb(33, 33, 33);
caret-color: white;
color: white;
margin: 5px;
font-size: 17px;
}
#seed {
width: 280px;
}
footer {
text-align: center;
width: 100%;
box-sizing: border-box;
padding: 20px;
position: absolute;
bottom: 0;
background: #202020;
color: white;
}
footer a {
text-decoration: none;
color: aqua;
font-weight: bold;
font-size: 17.2px;
}