-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
50 lines (42 loc) · 850 Bytes
/
styles.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
@import url('//brick.a.ssl.fastly.net/Montserrat:400,700');
body {
margin: 0;
}
p {
width: 100vw;
height: 100vh;
display: table-cell;
vertical-align: middle;
text-align: center;
font-family: Montserrat, sans-serif;
font-weight: 400;
font-size: 3em;
color: black;
}
a {
font-weight: 700;
color: currentColor;
text-decoration: none;
border-bottom-width: 0;
border-bottom-color: currentColor;
border-bottom-style: solid;
}
a:hover,
a:focus {
border-bottom-width: .1em;
}
/* couleur et style pour amélie */
a[href*=amelie] {
border-bottom-color: #FF1F7F;
border-bottom-style: dotted;
}
/* couleur et style pour charles */
a[href*=charles] {
border-bottom-color: #99f805;
border-bottom-style: ridge;
}
/* couleur et style pour nicolas */
a[href*=probablement] {
border-bottom-color: #33B0AF;
border-bottom-style: double;
}