-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (122 loc) · 2.21 KB
/
style.css
File metadata and controls
125 lines (122 loc) · 2.21 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
115
116
117
118
119
120
121
122
123
124
.fbutton{
color: white;
background: goldenrod;
padding: 0;
text-align: center;
display: inline-block;
font-size: 20px;
border-radius: 7px;
margin: 2px;
width: 100%;
font-family: "lato";
hiegth: 6px;
cursor: pointer;
}
.fbutton:hover {
color: black;
background: goldenrod;
border-radius: 5px;
transition-delay: 0.1s;
font-family: "CC Overbyte";
border-radius: 5px;
box-shadow: 5px 10px goldenrod;
}
h4 {
background-color: #00ffff
}
*{
box-sizing: border-box;
}
html, body {
overflow-x: hidden;
height: 100%;
}
body {
font-family: 'Varela Round', sans-serif;
background: storage/external/0/web/bg_main.jpg;
padding: 0;
margin: 0;
}
h1{
text-align: center;
padding-top: 30px;
}
.main {
height: 100%;
margin-top: 60px;
padding: 10px 50px;
}
#sidebarMenu {
height: 100%;
position: fixed;
left: 0;
top: 0;
width: 250px;
margin-top: 60px;
transform: translateX(-250px);
transition: transform 250ms ease-in-out;
background: black;
}
.menu{
list-style: none;
margin:0;
padding:0;
}
.menu li{
border-bottom: 1px solid
}
.menu li a{
color: white;
display: block;
padding: 20px;
text-transform: uppercase;
font-weight: bold;
text-decoration: none;
}
#openSidebarMenu:checked ~ #sidebarMenu {
transform: translateX(0);
}
input#openSidebarMenu{
display: none;
}
.sidebarIconToggle {
height: 22px;
width: 22px;
position: absolute;
z-index: 99;
top: 22px;
left: 15px;
transition: all 0.3s;
cursor: pointer;
}
.spinner {
height: 3px;
background-color: white;
transition: all 0.3s;
}
.spinner.middle ,
.spinner.bottom{
margin-top: 3px;
color: black
}
#openSidebarMenu:checked ~ .sidebarIconToggle > .spinner.middle {
opacity: 0;
}
#openSidebarMenu:checked ~ .sidebarIconToggle > .spinner.top {
transform: rotate(135deg);
margin-top: 8px;
}
#openSidebarMenu:checked ~ .sidebarIconToggle > .spinner.bottom {
transform: rotate(-135deg);
margin-top: -9px;
}
.header {
background-color: goldenrod;
width: 100%;
height: 60px;
position: fixed;
z-index: 10;
}
.menu li{
border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}