-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (90 loc) · 1.71 KB
/
style.css
File metadata and controls
110 lines (90 loc) · 1.71 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
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
body {
background-color: rgb(32, 31, 49);
margin: 0px;
padding: 0px;
font-family: "Roboto", sans-serif;
font-weight: 100;
font-style: normal;
}
a {
text-decoration: none;
}
.side_bar_menu{
box-shadow: 6px 0px 3px rgba(255, 255, 255, 0.5);
box-shadow: 2px 1px 3px rgba(255, 255, 255, 0.5);
height: 100vh ;
width: 40vh;
background-color: rgb(56, 63, 69, 0.6);
display: inline-block;
position: fixed;
left: -300px;
transition: all 0.2s ease-in;
}
#check {
display: none;
}
.button_1 {
color: white;
padding: 10px;
cursor: pointer;
position: absolute;
left: 16px;
}
.logo {
position: absolute;
top: 50px;
height: 40px;
width: 100%;
box-shadow: 2px 1px 3px gray;
}
.logo a {
color: white;
font-family: "Permanent Marker", cursive;
font-weight: 400;
padding: 20px;
font-size: 30px;
}
.button_2 {
color: grey;
position: relative;
left: 200px;
cursor: pointer;
}
.menu_icons ul {
position: absolute;
top: 100px;
left: 5px;
list-style-type: none;
padding: 0px;
}
.menu_icons ul li {
width: 100%;
padding: 20px;
/* margin: 10px; */
}
.menu_icons ul li a {
color: white;
}
i {
padding: 7px;
}
.social_media {
position: absolute;
top: 470px;
color: grey;
margin-left: 30px;
position: relative;
}
.menu_icons ul li:hover {
box-shadow: 1px 1px 4px whitesmoke;
}
.social_media i:hover {
color: white;
transform: scale(1.1);
}
#check:checked ~ .side_bar_menu{
left: 0px;
}
#check:checked ~ .button_1 {
display: none;
}