1
0
Fork 0
mirror of https://github.com/Findus23/nonsense.git synced 2024-09-19 16:03:50 +02:00
nonsense/public/style.scss
2017-12-11 14:55:40 +01:00

63 lines
No EOL
1 KiB
SCSS

$famousYellow: #ffcc00;
$famousBlue: #003399;
body, html {
padding: 0;
margin: 0;
background: $famousBlue;
height: 100%;
font-family: "Verdana", "Liberation Sans", sans-serif;
}
#contentbox {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
height: 100%;
}
#box {
background: $famousYellow;
padding: 16px;
}
#buttonwrapper {
position: fixed;
top: 50px;
text-decoration: none;
&:hover {
text-decoration: none; #icon {
transform: rotate(90deg);
}
}
}
#icon {
width: 70px;
height: 70px;
transition: transform .3s;
}
#button {
//background-color: $famousYellow;
//border: none;
color: white;
//cursor: pointer;
//display: inline-block;
//font-size: 1.1rem;
//font-weight: 700;
//height: 3.8rem;
//letter-spacing: .1rem;
//line-height: 3.8rem;
//padding: 0 3.0rem;
//text-align: center;
text-transform: uppercase;
//white-space: nowrap;
}
#name {
font-size: 36px;
text-align: center;
margin-bottom: 16px;
}