-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleliste.css
More file actions
329 lines (100 loc) · 2.18 KB
/
Copy pathstyleliste.css
File metadata and controls
329 lines (100 loc) · 2.18 KB
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
115
116
117
118
:root {
--principal: #ea5c0d;
--seccolor : #b94503;
--jaune : #f7af3e;
--fond : #333333;
--secfond : #505050;
}
@font-face {
font-family: "dyno_saur";
src: url('./fonts/Dyno/Dyno\ Regular.ttf');
}
@font-face {
font-family: "dyno_saurB";
src: url('./fonts/Dyno/Dyno\ Bold.ttf');
}
@font-face {
font-family: "dyno_saurI";
src: url('./fonts/Dyno/Dyno\ Italic.ttf');
}
@font-face {
font-family: "cicle_base";
src: url('./fonts/Cicle/Cicle\ Gordita.ttf');
}
body {
display: flex;
min-height: 100vh;
flex-direction: column;
font-family: "dyno_saur";
letter-spacing: 2px;
background-color: var(--secfond);
}
.contenu {
color: #fff;
padding: 40px;
margin-top: 60px;
min-height: 80vh;
}
.contenu ul {
padding-left: 2%;
}
/*titre principal de la page*/
h1 {
text-shadow: 1px 1px 2px #333333;
font-family: "dyno_saurB";
color: var(--principal);
font-size: 3.5em;
margin: 0;
padding: 0;
margin-bottom: 30px;
text-align: center;
}
h2 {
text-transform: uppercase;
font-family: "dyno_saurB",sans-serif;
color: white;
background: url(./img/h2.png);
background-repeat: no-repeat;
height: 120px;
line-height: 72px;
padding-left: 120px;
font-size: 45px;
white-space: nowrap;
overflow: hidden;
list-style-position: outside;
}
h4{
font-weight: 600;
font-size: 24px;
margin: 0 0 15px;
}
.contenu a {
color : #fff;
}
.top{
text-decoration: none;
padding: 20px;
font-family: sans-serif;
color: #fff;
background: #000;
border-radius: 90px;
position: sticky;
bottom: 20px;
place-self: end;
margin-top: 50vh;
margin-bottom: 10px;
margin-right: 10px;
white-space: nowrap;
margin-right: 10px;
}
.top::before{
content: "Haut ";
}
@media((min-width: 800px) and (min-height:900px)){
.contenu a {
font-size: 5vh;
}
.contenu{
font-size: 3vh;
}
}