-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (52 loc) · 1.16 KB
/
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
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&family=VT323&display=swap');
body {
font-family: 'VT323';
background: url('../images/backgroundtexture.gif') no-repeat center center fixed;
background-size: cover;
}
#dvdText {
font-family: 'Rubik Mono One', sans-serif;
}
#loadingText {
animation: flicker 0.5s infinite alternate;
}
@keyframes flicker {
0% { opacity: 1; }
100% { opacity: 0.7; }
}
/* Pour les petits écrans (moins de 600px de largeur) */
@media only screen and (max-width: 600px) {
body {
font-size: 8px;
}
#dvdText {
font-size: 8px;
}
#loadingText {
font-size: 8px;
}
}
/* Pour les écrans moyens (entre 600px et 1024px) */
@media only screen and (min-width: 600px) and (max-width: 1024px) {
body {
font-size: 8px;
}
#dvdText {
font-size: 8px;
}
#loadingText {
font-size: 8px;
}
}
/* Pour les grands écrans (plus de 1024px) */
@media only screen and (min-width: 1024px) {
body {
font-size: 12pxx;
}
#dvdText {
font-size: 12px;
}
#loadingText {
font-size: 12px;
}
}