-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearchstyle1.css
54 lines (48 loc) · 1016 Bytes
/
searchstyle1.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
body {
margin: 0;
padding: 0;
background-color:#FFFFFF ;
}
.box {
position: absolute;
top: 17%;
left: 70%;
transform: translate(30%, 30%);
}
.box select {
font-size: 25px;
background-color: #FFFFFF;
color: #0067FF;
padding: 10px;
width: 80px;
border:black;
border-radius: 10px 10px 10px 10px;
font-family: 나눔고딕,NanumGothic,돋움,Dotum;
font-weight:500;
-webkit-appearance: button;
appearance: button;
}
.box::before {
content: "\f13a";
font-family: 나눔고딕,NanumGothic,돋움,Dotum;
position: absolute;
top: 0;
left:200;
right: 0;
width: 50%;
height: 100%;
text-align: center;
font-size: 0px;
font-weight:500;
color: rgba(255, 255, 255, 0.5);
background-color: rgba(255, 255, 255, 0.1);
pointer-events: none;
}
.box:hover::before {
color: rgba(255, 255, 255, 0.6);
background-color: rgba(255, 255, 255, 0.2);
}
.box select option {
padding: 50px;
font-size: 15px;
}