-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (53 loc) · 857 Bytes
/
style.css
File metadata and controls
60 lines (53 loc) · 857 Bytes
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
* {
margin: 0;
padding: 0;
box-sizing: bnorder-box;
}
body {
background-color: #f8f9fa;
}
header {
padding: 8px 16px;
width: 400px;
display: flex;
justify-content: space-between;
background-color: #fff;
border-bottom: 1px solid #edeced;
}
h1 {
color: #2f80ed;
font-size: 18px;
line-height: 21px;
font-weight: 400;
}
h2 {
color: #606367;
font-size: 18px;
line-height: 21px;
font-weight: 400;
}
section {
padding-top: 32px;
padding-bottom: 32px;
text-align: center;
}
span {
font-size: 16px;
cursor: pointer;
font-weight: 600;
color: #999;
}
button {
font-style: 400;
font-size: 24px;
cursor: pointer;
outline: none;
line-height: 22px;
background-color: #2064de;
color: #fff;
padding: 16px 40px;
text-align: center;
margin-left: auto;
margin-right: auto;
border-radius: 50px;
}