-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstaff_interface_style.css
More file actions
107 lines (103 loc) · 1.74 KB
/
Copy pathstaff_interface_style.css
File metadata and controls
107 lines (103 loc) · 1.74 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
*{
list-style: none;
text-decoration: none;
padding: 0;
margin: 0;
}
body{
background-color: black;
background-repeat: no-repeat;
background-size: 1200px 700px;
background-attachment: fixed;
background-position: center;
}
.sidebar{
position: fixed;
left: -255px;
width: 250px;
height: 100%;
background: #042331;
transition: all .5s ease;
margin-top: 0px;
}
.sidebar header{
font-size: 22px;
color: white;
text-align: center;
line-height: 70px;
background: #063146;
user-select: none;
transition: all .5s ease;
}
.sidebar a{
display: block;
height: 100%;
width: 100%;
line-height: 65px;
font-size: 20px;
color: white;
padding-left: 40px;
box-sizing: border-box;
border-top: 1px solid rgba(255, 255, 2555, .1);
border-bottom: 1px solid black;
}
li:hover{
padding-left: 20px;
}
#check1{
display: none;
}
label #btn, label #btn2{
position: absolute;
cursor: pointer;
background: #042331;
border-radius: 3px;
}
label #btn{
left: 15px;
top: 8px;
font-size: 35px;
color: white;
padding: 6px 12px;
transition: all .5s ease;
}
label #btn2{
z-index: 1111;
left: -195px;
top: 17px;
font-size: 30px;
color: white;
padding: 4px 9px;
transition: all .5s ease;
}
#check1:Checked ~ .sidebar{
left: 0;
}
#check1:Checked ~ label #btn{
left: 250px;
opacity: 0;
pointer-events: none;
}
#check1:Checked ~ label #btn2{
left: 195px;
}
h1{
text-transform: uppercase;
text-align: right;
font-family: sans-serif;
font-size: 25px;
padding-right: 20px;
padding-top: 20px;
color: white;
}
.nam{
background-color: black;
height: 70px;
}
.welcome{
text-align: center;
font-size: 80px;
padding-top: 130px;
cursor: pointer;
color: blue;
}