-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (50 loc) · 947 Bytes
/
Copy pathstyle.css
File metadata and controls
64 lines (50 loc) · 947 Bytes
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
/* William BRISA - Premiere Page HTML */
/* Septembre 2019 */
/* Feuille de style en cascade */
/* Google Font */
@import url('https://fonts.googleapis.com/css?family=Lato&display=swap');
/* MAIN */
html {
font-family: Lato, Tahoma, Verdana, Geneva, sans-serif;
}
body {
box-sizing: border-box;
background-color: rgba(0, 0, 0, 0.05);
}
img {
height:auto;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
border-radius: 5px; /* future proofing */
-khtml-border-radius: 5px; /* for old Konqueror browsers */
}
/* MAIN SECTION */
h1 {
text-align: center;
}
h3 {
text-align: center;
}
nav {
text-align: center;
}
/* ARTICLE SECTION */
article {
width: 45%;
float: left;
margin: 2em;
}
td {
padding: 0.7em 1em 0.7em 0.7em;
text-align: center;
}
aside {
width: 40%;
float: left;
margin: 2em;
}
/* FOOTER */
footer {
width: 100%;
clear: both;
}