-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
104 lines (86 loc) · 1.26 KB
/
stylesheet.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
body{
background-image:url("/images/rooftop.jpg");
background-repeat:no-repeat;
background-size:100% 100%;
height:40rem;
overflow-x:hidden;
}
a{
text-decoration:none;
color:black;
}
header{
background: #f7f7f7;
height:5rem;
display:flex;
overflow:hidden;
opacity:0.9;
}
header img{
width:5rem;
}
ul{
font-family: 'Roboto';
font-size:1.5rem;
font-weight:0.01rem;
padding:0;
margin:0;
width:100%;
margin-left:2rem;
}
ul li{
display:inline-flex;
padding:1.5rem 5rem 1.5rem 0;
}
.fa {
font-size: 1.5rem;
display:inline;
margin-left:0.5rem;
}
.products{
height:5rem;
padding:1.5rem 5rem 1.5rem 0;
display:inline-block;
}
.products:hover{
color:#74d14c;
}
.products:hover .dropdown{
display:block;
border-top:1px solid black;
}
.dropdown{
display:none;
position:absolute;
text-align:center;
top:5.5rem;
width:12.5rem;
}
.dropdown ul{
margin:0;
padding:0;
}
.dropdown ul li{
background:#f7f7f7;
color:black;
padding:0.5rem;
font-size:1rem;
display:block;
}
.dropdown ul li:hover{
color:#74d14c;
}
.shpock{
display:flex;
position:relative;
top:40%;
left:70%;
}
.shpock a img{
height:4rem;
width:4rem;
}
.shpock:hover{
top:38%;
transition:top 0.5s ease;
}