24 lines
376 B
CSS
24 lines
376 B
CSS
/*h1 {color: rgb(255, 79, 138);}
|
|
|
|
h2 {color: seagreen}
|
|
|
|
h3 {color: seagreen;}
|
|
|
|
h4 {color: rgb(255, 79, 138);}
|
|
|
|
li {color:rgb(255, 79, 138)}
|
|
|
|
ul {color: rgb(255, 79, 138);}
|
|
|
|
p{color: seagreen;} */
|
|
|
|
#scene {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
z-index: 1; /* derrière le texte */
|
|
background: black; /* pour tester */
|
|
}
|