-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (90 loc) · 1.54 KB
/
Copy pathstyle.css
File metadata and controls
95 lines (90 loc) · 1.54 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
*, ::before, ::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: #2f2f2f;
}
.contenu-site {
margin-left: 110px;
}
h1 {
text-align: center;
font-size: 50px;
color: #f1f1f1;
}
.liste-nav {
top: 0;
left: 0;
position: fixed;
height: 100vh;
min-height: 900px;
width: 110px;
background: #565656;
cursor: pointer;
z-index: 20;
}
.items:nth-child(1){
font-size: 20px;
}
.items {
height: 110px;
width: 100%;
color: #f1f1f1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-bottom: 1px solid #333;
}
.icones {
width: 30px;
}
.items:nth-child(5) img {
width: 25px;
}
.items p {
margin: 10px 0;
}
/* Sous-listes */
.sous-menu {
position: fixed;
top: 0;
left: -210px;
width: 250px;
height: 100vh;
min-height: 900px;
background: rgb(32,32,32);
border-left: 7px solid #000;
border-right: 7px solid #000;
color: #f1f1f1;
z-index: 5;
transition: all 0.2s ease-in-out;
}
.header-liste {
height: 70px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 20px;
border-bottom: 1px solid #333;
}
.items-sous-menu {
display: flex;
justify-content: flex-start;
width: 100%;
padding: 20px 40px;
}
.items-sous-menu img {
width: 20px;
}
.items-sous-menu p {
margin-left: 10px;
}
/* anim */
.active {
left: 110px;
}