-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathmain.css
171 lines (163 loc) · 2.78 KB
/
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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
* { box-sizing: border-box; }
body {
margin :0px;
}
a {
text-decoration:none;
color:#333;
}
.wrap_lnb{
border-bottom: 1px solid #e9e9e9;
}
.lnb {
margin:auto;
width:980px;
height:36px;
font-family: "Nanum", sans-serif;
}
.lnb a {
display:block;
font-size:12px;
letter-spacing: -0.2px;
padding:10px 11px 9px;
}
span.ic {
display:inline-block;
width:7px;
height:12px;
background: url("./images/bul_arr_down.png") no-repeat center 1px;
margin-left: 4px;
}
.link_app {
text-align: center;
float:left;
}
.lnb .link_app>a:hover, .lnb .link_app>a:focus, .lnb li>a:hover {
color:#2ac1bc;
}
.lnb_sub{
margin:0;
float:right;
}
.lnb_sub li:first-child {
background:none;
}
.lnb_sub li:last-child {
font-weight: bold;
}
.lnb_sub li {
float:left;
list-style: none;
background: url("./images/util_bar.gif") no-repeat 0 13px;
}
.header {
width:980px;
height:98px;
margin:auto;
overflow: hidden;
}
.header > a{
float:left;
margin: 16px 0 0 5px;
}
.header form {
position: relative;
float:left;
margin : 30px 0 0 46px;
}
.header input {
box-sizing: border-box;
border : 1px solid #cfd0d2;
width:210px;
height:40px;
padding:0 38px 0 15px;
}
.header input:hover, .header input:focus {
border-color: #2ac1bc;
}
.header button {
border:0;
width:38px;
height:38px;
background : url("./images/ic_search.png") no-repeat center 0;
text-indent: -3000px;
position: absolute;
top: 1px;
right: 1px;
cursor: pointer;
}
.header ul{
margin: 0 5px 0 0;
height:100%;
float : right;
list-style: none;
overflow:hidden;
}
.header li{
float:left;
}
.header li>a{
display:block;
height:48px;
margin: 25px 0 25px 50px;
}
/* gnb 시작*/
.wrap_nav {
background-color: #483f35
}
.nav {
margin:auto;
width:980px;
text-align: center;
}
.gnb>li {
box-sizing: border-box;
margin-top : 5px;
}
.sub_list>li:hover {
text-decoration: underline;
}
.gnb {
padding:0;
text-align: left;
display: inline;
list-style: none;
}
.gnb li {
margin-left: 5px;
font: bold 16px sans-serif;
display: inline-block;
margin-right: -4px;
position: relative;
padding: 15px 20px;
background: #483f35;
cursor: pointer;
color: #fff;
}
.gnb li:hover {
background: #fff;
color: #2ac1bc;
}
.gnb ul {
border:1px solid #555;
border-top: none;
margin:3px;
padding: 0;
position: absolute;
top: 48px;
left: -4px;
width: 130px;
display: none;
}
.sub_list li {
display: block;
color: #333;
background:#fff;
font-size:12px;
padding:10px 15px;
}
.gnb li:hover .sub_list {
display: block;
overflow: hidden;
}
/* gnb 종료*/