-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (47 loc) · 878 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
body {
width: 100%;
height: 100%;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: center;
background-color: #171816;
}
div {
width: 100%;
height: 100%;
margin: 0 auto;
background-color: #171816;
display: flex;
flex-flow: column;
align-items: center;
justify-content: center;
}
h1 {
color: #a1f10b;
font-size: 30px;
font-weight: 600;
font-family: sans-serif;
}
p {
color: #0bf17e;
font-size: 18px;
font-weight: 400;
font-family: sans-serif;
}
button {
border: none;
color: rgb(41, 6, 236);
background-color:#171816;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
button:hover {
background-color:#202020;
color: #0bbbf1;
}