homepage/res/style.css
2020-10-05 00:21:51 +03:00

74 lines
No EOL
1.2 KiB
CSS

body {
background: #2E2E2E;
font-family: 'Roboto', sans-serif;
font-weight: 400;
}
.card {
margin: 25px auto;
padding: 20px;
width: 400px;
background: #d1d1d1;
border-radius: 3px;
-webkit-box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
-moz-box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
box-shadow: 2px -2px 38px 1px rgba(0,0,0,0.59);
}
.navigation-card {
width: 500px;
text-align: center;
}
.navigation-buttons a {
margin-left: 10px;
}
.navigation-buttons a:first-child {
margin-left: 0px;
}
.button-default {
text-decoration: none;
border: none;
background-color: #d1d1d1;
border-radius: 5px;
padding: 5px;
font-size: 18px;
white-space: nowrap;
margin-top: 2px;
margin-bottom: 2px;
color: #606060;
cursor: pointer;
outline: none;
}
.button-default:hover:not(.button-selected) {
color: #d1d1d1;
background-color:#555555;
}
.button-selected {
color: #d1d1d1;
background-color:#2E2E2E;
}
.button-border {
border: 2px solid #606060;
}
@media screen and (max-width: 768px) {
.card {
width: 80%;
}
}
.input {
border: none;
outline: none;
border-radius: 2px;
padding: 3px;
margin: 3px;
}