41 lines
No EOL
821 B
CSS
41 lines
No EOL
821 B
CSS
body {
|
|
background-color: #181818;
|
|
color: #fff;
|
|
font-family: 'Lato', sans-serif;
|
|
text-align:center;
|
|
}
|
|
h1 {
|
|
font-family: 'Staatliches', cursive;
|
|
}
|
|
|
|
text {
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
button {
|
|
vertical-align: top;
|
|
height: 28px;
|
|
min-width: 120px;
|
|
padding: 0px 18px;
|
|
margin-top: 5px;
|
|
margin-bottom: 5px;
|
|
margin-right: 6px;
|
|
border-radius: 5px;
|
|
border: none;
|
|
color: #fff;
|
|
background-color: #000;
|
|
background: linear-gradient(#343434 20%, #000 100%);
|
|
cursor: pointer;
|
|
}
|
|
|
|
button.white {
|
|
color: #121212;
|
|
background-color: #afafaf;
|
|
background: linear-gradient(#fff 20%, #afafaf 100%);
|
|
}
|
|
|
|
button.red {
|
|
color: #fff;
|
|
background-color: #94132e;
|
|
background: linear-gradient(#d42043 20%, #94132e 100%);
|
|
} |