94 lines
1.5 KiB
SCSS
94 lines
1.5 KiB
SCSS
|
@import "../../fonts/fonts";
|
||
|
@import "../styles/_variables";
|
||
|
|
||
|
* {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0px;
|
||
|
padding: 0px;
|
||
|
color: white;
|
||
|
background: rgb(30,30,30);
|
||
|
}
|
||
|
|
||
|
.header {
|
||
|
margin: 0px;
|
||
|
|
||
|
padding-left: 60px;
|
||
|
padding-top: 30px;
|
||
|
padding-bottom: 30px;
|
||
|
|
||
|
margin-bottom: 40px;
|
||
|
|
||
|
// color: lavender;
|
||
|
// background: cornflowerblue;
|
||
|
// border-bottom: 12px solid royalblue;
|
||
|
|
||
|
// color: white;
|
||
|
// background: #217867;
|
||
|
// border-bottom: 12px solid #165044;
|
||
|
|
||
|
color: white;
|
||
|
background: mediumseagreen;
|
||
|
border-bottom: 12px solid seagreen;
|
||
|
|
||
|
font-family: 'Permanent Marker';
|
||
|
font-size: 5em;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
margin-left: 60px;
|
||
|
|
||
|
h2 {
|
||
|
margin-bottom: 10px;
|
||
|
|
||
|
font-family: 'Architects Daughter';
|
||
|
font-size: 2em;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
ul {
|
||
|
list-style: none;
|
||
|
}
|
||
|
|
||
|
.infopointitem {
|
||
|
padding-bottom: 5px;
|
||
|
line-height: 20px;
|
||
|
|
||
|
// white-space: nowrap;
|
||
|
|
||
|
display: flex;
|
||
|
}
|
||
|
|
||
|
.bullet {
|
||
|
padding-right: 0.5em;
|
||
|
}
|
||
|
|
||
|
// ul li::before {
|
||
|
// content: "-> ";
|
||
|
// }
|
||
|
|
||
|
.infopoint {
|
||
|
padding-left: 0.5em;
|
||
|
text-decoration: none;
|
||
|
|
||
|
// color: #ff6600;
|
||
|
color: mediumaquamarine;
|
||
|
|
||
|
&:hover {
|
||
|
// color: #d45500;
|
||
|
color: aquamarine;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.redirect {
|
||
|
font-size: 0.8rem;
|
||
|
|
||
|
li {
|
||
|
padding: 0px;
|
||
|
}
|
||
|
}
|
||
|
}
|