-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (97 loc) · 1.86 KB
/
styles.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
html {height: 100%;}
* {
outline: none;
}
body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
box-sizing: border-box;
}
header {
border-left:2px solid gray;
border-bottom:2px solid gray;
border-right:2px solid gray;
width: 85%;
height: 80px;
position: relative;
margin:0 auto;
}
.header_container {
width: 100%;
height: 100%;
}
.header_container-search {
position: absolute;
}
.header_container nav ul {
display: flex;
justify-content: flex-end;
align-items: center;
top: 0;
height: 61%;
position: absolute;
padding: 0;
width: 100%;
z-index: 1;
}
.header_container nav ul li {
margin:0px 20px;
font-size: 17px;
}
.header_container nav ul li:hover {
text-decoration: underline;
}
.header_container nav ul li:last-child {
margin-right: 200px;
}
.header_container nav ul li a {
color:dodgerblue;
text-decoration: none;
}
.header_container-search {
position: absolute;
left: 28%;
bottom: 29px;
z-index: 2;
border-radius: 3px;
border: 1px solid gray;
}
.header_container-search:focus {
border:2px solid dodgerblue;
}
.header_container-logo {
margin-left: 200px;
width: 150px;
position: absolute;
top: 9%;
}
.header_input {
position: relative;
width: 175px;
height: 24px;
margin: 50px;
margin: 10px auto;
}
.input_icon {
width: 13px;
position: absolute;
bottom: 20%;
left:8px;
}
.header_search {
border-radius: 4px;
border:1px solid gray;
height: 20px;
background-image: ;
outline: none;
position: absolute;
width: 175px;
font-size: 14px;
vertical-align: middle;
}
input:focus {
border:1px solid dodgerblue;
outline: none;
}