-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·113 lines (97 loc) · 1.46 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
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
/* ==============
Style de base
============== */
html {
color: #222;
background-color: #eee;
}
body {
background-color:white;
font-family: "Sporting Grotesque_Regular", "Comic Sans", "Courier", sans-serif;
display: flex; /* or inline-flex */
margin: 0;
}
#intro1 {
font-size: 180px;
}
#intro1 p {
margin: -105px;
margin-left: 20px;
margin-top: 13px;
}
.ecran {
background-color: #fff;
border: 1px solid red;
flex: 1 0;
height: 100vh;
Bottom: 0;
position: relative;
}
.ecran2 {
border-color: blue;
}
.plus {
font-size: 15vmin;
top: 0vh;
left: calc(50% - 5vmin);
position: absolute;
}
.personnage {
width: 11.1111111%;
height: 20vh;
position: absolute;
bottom: 0;
left: 44.4444444%;
}
.personnage img{
object-fit: contain;
display: block;
max-height: 100%;
max-width: 100%;
margin: auto;
}
.snowflakes {
top:0px;
left:0px;
position:absolute;
z-index:200;
font-size: 3em;
width:10px;
height:10px;
background:;
}
#site {
width:100vw;
height:100vh;
margin:0 auto;
position:relative;
overflow:hidden;
}
#snowZone {
display: none;
}
#plus{
top:0px;
left:0px;
position:absolute;
z-index:200;
font-size: 5em;
width:10px;
height:10px;
display: none;
}
#debug {
position: absolute;
right: 0px;
top: 0px;
min-width: 150px;
min-height: 50px;
border : 1px solid black;
}
#gameover {
display: none;
height: 100vh;
text-align: center;
color: white;
background-color: black;
}