40 lines
446 B
SCSS
40 lines
446 B
SCSS
* {
|
|
// outline: 1px blue solid;
|
|
}
|
|
|
|
html {
|
|
background-color: #111111;
|
|
color: #f2f2f2;
|
|
}
|
|
|
|
body {
|
|
a {
|
|
color: rgb(255, 176, 227);
|
|
}
|
|
width: 60vw;
|
|
margin: 0px auto;
|
|
font-family: sans-serif;
|
|
h1 {
|
|
text-align: center;
|
|
}
|
|
.warning {
|
|
color: rgb(222, 119, 217);
|
|
}
|
|
}
|
|
|
|
footer {
|
|
text-align: center;
|
|
width: 60vw;
|
|
img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.fourofour {
|
|
text-align: center;
|
|
img {
|
|
position: relative;
|
|
width: 70%;
|
|
}
|
|
}
|