-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (108 loc) · 1.98 KB
/
style.css
File metadata and controls
114 lines (108 loc) · 1.98 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
111
112
113
114
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
.main_box {
height: 100vh;
background-image: url(spideyyy.jpg);
background-size: cover;
background-position: center;
transition: all 0.5s ease;
}
.btn_one i {
color: rgb(16, 86, 236);
font-size: 28px;
font-weight: 700;
line-height: 60px;
left: 10px;
position: absolute;
}
.sidebar_menu {
width: 250px;
height: 100vh;
background-color: rgba(255, 65, 43, 0.35);
position: fixed;
box-shadow: 0 0 10px rgba(42, 60, 220, 0.5);
left: -250px;
transition: all 0.5s ease;
}
#check {
display: none;
}
.sidebar_menu .btn_two i {
color: rgb(16, 86, 236);
font-size: 28px;
left: 200px;
position: absolute;
line-height: 60px;
}
.sidebar_menu .logo {
position: absolute;
width: 100%;
line-height: 60px;
}
.sidebar_menu .logo a {
color: rgb(16, 86, 236);
font-size: 20px;
margin-left: 45px;
font-weight: 700;
text-decoration: none;
}
.sidebar_menu .menu {
transition: all 0.5s ease;
position: absolute;
top: 100px;
width: 100%;
}
.sidebar_menu li {
margin-top: 5px;
padding: 14px 20px;
}
.sidebar_menu .social_media {
position: absolute;
bottom: 25px;
width: 100%;
left: 25%;
}
.sidebar_menu .menu i {
padding-right: 8px;
text-decoration: none;
color: rgb(16, 86, 236);
font-size: 18px;
}
.sidebar_menu .menu li a {
text-decoration: none;
color: rgb(16, 86, 236);
font-size: 18px;
}
.sidebar_menu .social_media i {
padding: 3px;
opacity: 0.5;
}
.sidebar_menu .menu li:hover {
box-shadow: 0 0 10px rgba(20, 13, 234, 0.5);
font-size: 23px;
}
.btn_one i:hover {
font-size: 30px;
transition: all 0.5s ease;
}
.btn_two i:hover {
transition: all 0.5s ease;
font-size: 40px;
}
.sidebar_menu .social_media i:hover {
transform: scale(1.3);
opacity: 1.5;
}
#check:checked ~ .sidebar_menu {
left: 0;
}
#check:checked ~ .main_box {
filter: blur(2px);
}
.sidebar_menu .logo:hover {
box-shadow: 0 0 10px rgba(20, 13, 234, 0.5);
}