2019-10-06 19:02:50 +00:00
|
|
|
html,
|
2018-03-19 20:01:30 +00:00
|
|
|
body {
|
2019-10-06 19:02:50 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
background-color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
#confetti {
|
|
|
|
position: fixed;
|
|
|
|
top:0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#container p {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
|
|
|
margin: 0;
|
|
|
|
padding: 1vw;
|
|
|
|
font-family: 'Kanit', sans-serif;
|
|
|
|
font-size: 16vw;
|
2018-03-19 20:01:30 +00:00
|
|
|
}
|
|
|
|
|
2019-10-06 19:02:50 +00:00
|
|
|
p.nope {
|
|
|
|
color: #888888;
|
2018-03-14 21:57:55 +00:00
|
|
|
}
|
2019-10-06 19:02:50 +00:00
|
|
|
|
|
|
|
p.yep {
|
|
|
|
background-image: linear-gradient(to right, violet, indigo, blue, green, yellow, orange, red);
|
|
|
|
background-clip: text;
|
|
|
|
-webkit-background-clip: text;
|
|
|
|
color: transparent;
|
|
|
|
}
|