-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcss_projet_bash.css
84 lines (68 loc) · 1 KB
/
css_projet_bash.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
* {
font-family: sans-serif;
}
body {
background-image: url("background.jpg");
background-position: center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
header {
background-color: white;
opacity: 0.3;
border-radius: 15px;
height: 10em;
margin-bottom: 4em;
}
h1 {
padding-top: 60px;
font-size: auto;
}
section {
color: white;
}
footer {
background-color: white;
opacity: 0.3;
border-radius: 15px;
height: 50px;
}
footer p {
text-align: center;
padding-top: 15px;
}
h2 {
font-size: 110%;
}
li {
display: block;
font-family: 'Arial';
font-size: 15px;
padding: 0.2em;
}
li label {
cursor: pointer;
}
a {
text-decoration: none;
color: inherit;
}
input {
display: none;
}
input ~ ul {
display: none;
}
input:checked ~ ul {
display: block;
}
input ~ .fa-angle-double-down {
display: none;
}
input:checked ~ .fa-angle-double-right {
display: none;
}
input:checked ~ .fa-angle-double-down {
display: inline;
}