-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (53 loc) · 976 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
background-color: #121216;
color: #fff;
user-select: none;
font-family: system-ui;
position: relative;
/*scroll-behavior: smooth;*/
}
.title {
text-align: center;
line-height: 2;
}
.desc {
text-align: center;
line-height: 2;
}
.start {
outline: none;
border: 1px solid #0ff;
background-color: transparent;
color: #0ff;
font-weight: 600;
padding: 10px;
border-radius: 10px;
margin: 0 auto;
text-align: center;
position: relative;
left: 50%;
transform: translateX(-50%);
}
#pi {
user-select: all;
margin: 5px;
padding: 10px;
color: #0ff;
border: 1px solid #0ff;
border-radius: 10px;
word-wrap: break-word;
margin-bottom: 10px;
transition: all 0.25s ease-in-out;
}
footer {
text-align: center;
color: #0ff;
line-height: 3;
}