-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewPost.css
More file actions
126 lines (106 loc) · 1.87 KB
/
newPost.css
File metadata and controls
126 lines (106 loc) · 1.87 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Noto Sans KR', sans-serif;
display: flex;
justify-content: center;
}
section {
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
}
footer {
width: 100%;
height: 10vh;
position: absolute;
bottom: 0;
left: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: rgba(54, 141, 63, 0.9);
}
#header {
height: 60px;
width: 100%;
background-color: rgba(54, 141, 63, 0.9);
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 997;
}
#header.header-fixed {
background: rgba(54, 141, 63, 0.5);
padding: 20px 0;
height: 72px;
transition: all 0.5s;
}
.nav {
float: right;
display: flex;
justify-content: center;
align-items: center;
}
.nav a {
text-decoration:none;
color: #ffffff;
}
.nav li{
float: left;
margin: 15px 20px;
list-style: none;
}
.nav li:hover a{
border-bottom: 1px solid #ffffff;
}
.dropdown-menu {
display: none;
position: absolute;
transition: 0.5s;
background-color: #e7de87;
padding: 12px 16px;
z-index: 1;
transition: all 0.3s;
}
.dropdown:hover .dropdown-menu {
display: block;
transition: all .5s;
}
.dropdown-menu li:hover a{
border-bottom: 1px solid #16aa25;
}
#container {
list-style: none;
}
#logo {
float: left;
width: 130px;
height: 50px;
}
#div {
margin-top: 70px;
width: 70%;
height: 500px;
}
#div span {
display: inline-block;
width: 80px;
margin-left: 10px;
margin-bottom: 10px;
}
#div input {
margin-bottom: 10px;
}
#title {
width: 80%;
}
#writing {
width: 80%;
height: 90%;
}