-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
67 lines (56 loc) · 956 Bytes
/
main.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
63
64
65
66
67
* {
padding: 0;
margin: 0;
}
body {
background-color: rgb(225, 225, 225);
}
.logo img {
width: 300px;
background-color: transparent;
}
.header {
padding: 10px;
display: flex;
justify-content: space-between;
background-color: white;
}
.header > div {
background-color: white;
}
.menu li {
list-style: none;
}
.head_btn {
width: 110px;
height: 30px;
background-color: rgb(63, 147, 74);
border-radius: 15px;
border: none;
color: white;
font-size: 15px;
}
.head_btn_like {
width: 110px;
height: 30px;
background-color: palevioletred;
border-radius: 15px;
border: none;
color: white;
font-size: 15px;
}
button:hover {
background-color: rgb(178, 185, 180);
cursor: pointer;
}
.menu {
display: flex;
gap: 15px;
background-color: white;
align-items: center; /*버튼을 가운데 두고 싶어서*/
padding-right: 20px;
}
.menu div {
background-color: transparent;
}
/*헤더디자인*/