-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.css
More file actions
63 lines (60 loc) · 874 Bytes
/
solution.css
File metadata and controls
63 lines (60 loc) · 874 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
61
62
63
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
a {
text-decoration: none;
color: #ffffff;
}
header {
width: 100%;
padding: 15px;
background: #000000;
color: white;
text-align: center;
position: sticky;
top: 0;
}
nav {
background: #1c641c;
height: 50px;
width: 100%;
padding: 15px;
}
ul {
list-style: none;
display: flex; /* 금요일에 배울 내용입니다! */
justify-content: flex-end;
}
ul > li {
margin: 0px 5px;
}
article {
width: 100%;
}
section {
width: 100%;
padding: 15px;
}
section:nth-child(1) {
background: #973618;
height: 500px;
}
section:nth-child(2) {
background: orange;
height: 500px;
}
section input {
display: block;
border: 0px;
padding: 20px;
border-radius: 3px;
margin-top: 5px;
}
footer {
background-color: #829967;
width: 100%;
padding: 15px;
text-align: center;
}