-
Notifications
You must be signed in to change notification settings - Fork 0
/
formation.style.css
114 lines (90 loc) · 1.51 KB
/
formation.style.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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/* style général page */
* {
box-sizing: border-box;
}
html, body {
height: 100%;
background-color: #213640;
display: flex;
flex-direction: column;
}
/* style forme + transition */
main {
flex-grow: 1;
}
#global {
height: 100%;
/* display: flex; */
justify-content: center;
}
#left, #right {
width: 40%;
background-color: #A2BFBB;
border-radius: 15px;
margin: 3% 2% 2% 2%;
padding: 20px;
}
/* style des titres */
h1, h2 {
color: white;
text-align: center;
font-family: 'Anton', sans-serif;
}
h2 {
padding-top: 5%;
padding-bottom: 6%;
}
/* style contenu paragraphes */
.parag, .parag2, ol {
color: white;
font-family: 'Raleway', sans-serif;
}
.parag {
text-align: center;
margin-bottom: 0.4rem;
}
.parag2 {
text-align: justify;
margin-left: 1.5rem;
margin-right:1.5rem;
}
.gras {
font-weight: bold;
}
ol {
list-style: inside;
margin-top: 6%;
padding-right: 8%;
text-align: justify;
}
a {
color: #213640;
}
/* style footer*/
footer {
margin-top: 5%;
}
/* changement style bootstrap */
.nav-link {
font-family: 'Raleway', sans-serif !important;
}
.navbar-light .navbar-toggler {
border-color: white !important;
}
/* partie responsive */
@media (max-width: 411px) {
#global {
display: flex;
flex-direction: column;
}
#left, #right {
width: 80%;
margin: 10%;
}
.parag {
padding: 2px;
}
.parag2 {
display: none;
}
}