-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.scss
56 lines (51 loc) · 909 Bytes
/
style.scss
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
*{
margin: 0%;
padding: 0%;
}
header {
background-color: rgb(27,82,128);
}
.logo{
padding-left: 37vh;
padding-top: 1vh;
}
input{
display: inline;
background-color: #154c7a;
margin-left: 210px;
margin-top: 20px;
position: absolute;
border: 1px solid #154c7a;
padding: 7px;
}
::placeholder {
color: #9dbbd5;
}
button{
height: 25px;
width: 25px;
background-image: url(images/icon-search.png) no repeat no-repeat center center #0a3559;
// background-attachment: fixed;
color: #dce8f2;
border-color: #0a3559;
position: absolute;
}
nav{
float: center;
display: block;
list-style: none;
margin-left: 214px;
li {
display: inline-block;
color: white;
padding: 22px;
}
}
.second{
display: none;
}
.icons .first:hover{
.second {
display: inline-block;
}
}