-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathside.css
More file actions
73 lines (64 loc) · 1.36 KB
/
side.css
File metadata and controls
73 lines (64 loc) · 1.36 KB
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
.main-bar{
width: 70%;
}
.side-bar{
width: 30%;
}
h1{
text-align: center;
color: aliceblue;
margin-left: 500px;}
.body {
height: 100%;
width: 30%;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: blueviolet;
overflow-x: hidden;
padding-top: 20px;
}
.body a {
padding: 6px 8px 6px 16px;
text-decoration: none;
font-size: 25px;
color: black;
display: block;
}
.body a:hover {
color: #f1f1f1;
}
body{
background-color: goldenrod;
}
.body a {
position: absolute;
left: -80px;
transition: 0.3s;
padding: 15px;
width: 100px;
text-decoration: none;
font-size: 20px;
color: white;
border-radius: 0 5px 5px 0;
}
.body a:hover {
left: 0;
}
#about {
top: 20px;
background-color: #04AA6D;
}
#services {
top: 80px;
background-color: black;
}
#clients {
top: 140px;
background-color: #f44336;
}
#contact {
top: 200px;
background-color:chartreuse;
}