homepage/res/style.css

62 lines
1.1 KiB
CSS
Raw Normal View History

2020-10-04 21:33:26 +03:00
body {
2020-10-04 22:13:08 +03:00
background: #2E2E2E;
2020-10-04 21:33:26 +03:00
font-family: 'Roboto', sans-serif;
2020-10-04 22:13:08 +03:00
font-weight: 400;
2020-10-04 21:33:26 +03:00
}
.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);
2020-10-04 21:33:26 +03:00
}
.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;
2020-10-04 22:13:08 +03:00
background-color: #d1d1d1;
2020-10-04 21:33:26 +03:00
border-radius: 5px;
padding: 5px;
2020-10-04 22:13:08 +03:00
font-size: 18px;
2020-10-04 21:33:26 +03:00
white-space: nowrap;
margin-top: 2px;
margin-bottom: 2px;
color: #606060;
2020-10-04 22:13:08 +03:00
cursor: pointer;
2020-10-04 23:56:12 +03:00
outline: none;
2020-10-04 22:13:08 +03:00
}
2020-10-04 23:56:12 +03:00
.button-default:hover:not(.button-selected) {
2020-10-04 22:13:08 +03:00
color: #d1d1d1;
2020-10-04 23:56:12 +03:00
background-color:#555555;
}
2020-10-04 23:56:12 +03:00
.button-selected {
color: #d1d1d1;
background-color:#2E2E2E;
2020-10-04 22:13:08 +03:00
}
@media screen and (max-width: 768px) {
.card {
width: 80%;
}
2020-10-04 21:33:26 +03:00
}