forked from SLI-UNIL/marshalling-prep-vrar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
43 lines (40 loc) · 948 Bytes
/
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
/* Pour gagner du temps, le .css a été généré par ChatGPT, avec à chaque fois un prompt
qui permettait de rajouter une ou plusieurs options (ex. Style this div so it has a
full-screen opaque white color, on top of the page, and the text is centred.)
Ensuite les éléments sont ajustés (ex. fond noir au final pour simuler une vue
paupières closes). */
#fullscreen-rect {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: black;
display: flex;
justify-content: center;
display: flex;
flex-direction: column;
transition: opacity 1.5s ease-in-out;
opacity: 1;
align-items: center;
text-align: center;
font-size: 24px;
z-index: 1000;
}
#infos {
font-size: 14px;
}
p {
color: white;
}
.svg-container {
position: absolute;
top: 10px;
right: 10px;
z-index: 1100;
}
svg {
width: 30px;
height: 30px;
margin: 5px;
}