-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle3.css
62 lines (58 loc) · 874 Bytes
/
style3.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
.title{
position:relative;
text-align:center;
}
.title::before{
content:"";
position:absolute;
top:50%;
left:0;
width:100%;
background:#a9c622;
height:2px;
z-index:-1;
background-color: red;
}
.title span{
background:#a9c622;
background-color: red;
}
legend {
background-color: #000;
color: #fff;
padding: 3px 6px;
}
.output {
font: 1rem 'Fira Sans', sans-serif;
}
label {
font-size: .8rem;
display: block;
margin: 1rem 0 .2rem 0;
}
input:invalid:not(:focus) {
outline: 1px solid #f00;
}
.menu {
margin-top: 4px;
height: 80px;
color: red;
font-size: 40px;
font-style: italic;
z-index: 1;
}
ul ul {
display: none;
}
li:hover ul.sous-menu {
display:block;
}
.sous-menu li a {
color: red;
text-decoration: none;
z-index: 1;
font-size: 20px;
}
body{
background-color: pink;
}