-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (43 loc) · 1009 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
* { margin: 0;
padding: 0;
border: 0;
}
body {
width: 100vw;
height: 100vh;
background: #101010;
font-family: 'ZCOOL KuaiLe', cursive, sans-serif;
color: white;
}
#container {
font-size: 32px;
display: flex;
flex-direction: column;
height: 50vh;
justify-content: center;
align-items: center;
}
#container p {
margin-top: 30px;
}
#box { height: 5vh;
display: flex;
align-items: center;
justify-content: center;
}
button {
color: black;
font-size: 32px;
font-family: "ZCOOL Kuaile";
margin: 0 24px;
width: 254px;
height: 54px;
border-radius: 20px;
cursor: pointer;
background: linear-gradient(45deg, #354AFB, #5D30E3);
}
button:hover {
transform: scale(1.1);
transition: all 0.2s;
color: #fff;
}