-
Notifications
You must be signed in to change notification settings - Fork 1
/
2주차.css
49 lines (42 loc) · 847 Bytes
/
2주차.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
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+KR:wght@100;300&display=swap');
* {
font-family: 'Bebas Neue', cursive;
font-family: 'Noto Sans KR', sans-serif;
}
body,h1,h2 {
margin: 0px;
padding: 0px;
}
body {
min-width: 36px;
}
h1 {
background-color: bisque;
font-size: 36px;
font-weight: bold;
font-style: italic;
}
h2 {
background-color: bisque;
font-size: 20px;
color: #282828;
margin-bottom: 16px;
border-bottom: 1px solid #ebebeb;
padding: 5px;
}
.mainbox {
width: 610px;
padding: 30px;
margin: 30px;
margin-right: auto;
margin-left: auto;
border: 1px solid #ebebeb;
box-shadow: 0 1px 20px 0 rgba(0,0,0,0.1);
}
.title-box {
text-align: right;
margin-bottom: 20px;
}
section {
margin-bottom: 24px;
}