28 lines
509 B
SCSS
28 lines
509 B
SCSS
$background: #4fa3cb;
|
|
$primary: #fff;
|
|
|
|
body {
|
|
background:$background;
|
|
color:$primary;
|
|
font-family:"Roboto", arial, sans-serif;
|
|
}
|
|
|
|
a { text-decoration:none; font-weight:bold; color:$primary;}
|
|
|
|
h1,
|
|
h2 {text-align:center;}
|
|
|
|
h1 { font-size:5em; font-size:10vw; }
|
|
|
|
h2 { font-family:serif; }
|
|
|
|
ul {
|
|
list-style:none;
|
|
width:80%;
|
|
margin:auto;
|
|
li {
|
|
float:left; min-width:200px; padding:5px; background:$primary; color:$background; text-align:center; border-radius:10px;
|
|
a { color:$background;}
|
|
}
|
|
}
|