-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (84 loc) · 1.69 KB
/
style.css
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
* {
font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 500px) { /*Tablette et tel...*/
.column {
width: 100%;
display: block;
}
}
/*Partie 1 : Barre Menu*/
ul {
/*Barre*/
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #262c34;
/*Couleur Barre*/
}
li {
float: left;
}
li a {
display: block;
color: white;
/*Couleur Text*/
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/*Barre en bas dès que le curseur est dessus (Marche pas en meme temps a cause du rectangle)*/
li:nth-child(1+4):hover(.active) {
border-bottom: 3px solid #262c34;
/*Barre gris sous les rectangle vert*/
}
li:nth-child(2+3):hover(.active) {
border-bottom: 3px solid #4CAF50;
/*Barre vert sous les zones du menu en gris*/
}
li a:hover:not(.active) {
background-color: #1f242b;
/*Rectangle carré dès que curseur est dessus*/
}
.active {
color: #262c34;
/*Couleur police pour zone vert*/
background-color: #4CAF50;
/*Zone vert*/
}
/*Home (ecole...)*/
body {
box-sizing: border-box;
}
*, *:before, *:after {
box-sizing: inherit;
}
.column {
float: left;
width: 33%;
padding: 10px;
}
.shadow {
box-shadow: 0 4px 8px 0 rgb(37, 37, 37);
}
.containerschool {
padding: 0 16px;
display: inline-flex;
}
.containerschool::after, .row::after {
content: "";
clear: both;
display: table;
}
.title {
color: #262c34;
}
/*Cours (prof ...)*/
.icon { /*Wankul*/
position: relative;
vertical-align: middle;
width: 100%;
height: 100%;
border-radius: 50%;
}