blob: 45c0fa28ea8ae3235e4bbe308865bd3e1a8486f9 (
plain)
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
|
/*
nom projet : NeoKron Projekt
nom fichier : menu_gost.css
Auteurs : Adrien Robert & Corentin Breton
version : 7.1
Note: Permet de modifier le design du menu
*/
#main-nav {
padding: 0;
background-color: #231F20;
}
#main-menu {
width: 100%;
float: left;
height: 100%;
font-family: FreeSetLightC;
margin-top: 10px;
margin-bottom: 10px;
margin-left: 17%;
margin-right: auto;
}
#main-menu li {
float: left;
width: 20%;
height: 100%;
border-right: 1px dashed #434243;
border-left: 1px dashed #434243;
overflow: hidden;
border-radius: 5px;
}
#main-menu li a {
position: relative;
display: block;
height: 100%;
text-align: center;
padding-top: 14px;
padding-bottom: 14px;
text-decoration: none;
color: #FFF;
text-transform: uppercase;
background-color: #231F20;
border-top: 4px solid #231F20;
border-bottom: 4px solid #231F20;
}
#main-menu li ul {
position: absolute;
}
#main-menu li a:hover {
border-top: 4px solid #DB1C36;
border-bottom: 4px solid #231F20;
}
#main-menu li a:hover {
border-top: 4px solid #DB1C36;
border-bottom: 4px solid #231F20;
}
#main-menu-sous {
position: absolute;
width: 100%;
display: block;
left: -1000em;
}
#main-menu li:hover ul
{
left: auto;
position: absolute;
z-index: 2;
}
#en_cours {
border-top: 0 solid #231F20;
border-bottom: 4px solid #DB1C36;
}
|