-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
62 lines (54 loc) · 1.04 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
body {
font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
color: #30343D;
background-color: #F6F7F9;
display: flex;
justify-content: center;
align-items: center;
margin: 0;
}
#container {
max-width: 640px;
width: 90%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
gap: 32px;
}
#buttons {
display: flex;
gap: 8px;
}
#sunrin, p {
padding-left: 2px;
}
a {
color: #30343D;
}
.button {
display: flex;
gap: 8px;
align-items: center;
background-color: #FFFFFF;
padding: 12px 20px 12px 20px;
border: 0;
border-radius: 48px;
width: fit-content;
text-decoration: none;
transition: 0.2s;
}
.button:hover {
background-color: #30343D;
color: #FFFFFF;
}
h1 {
font-weight: 600;
font-size: 44px;
line-height: 100%;
margin: 0;
}
p {
line-height: 160%;
margin: 0;
}