RetroDECK-Website/css/style.css

74 lines
1.3 KiB
CSS
Raw Normal View History

2024-04-18 13:19:40 +00:00
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');
2024-04-18 13:19:40 +00:00
body {
background-color: #222;
2024-04-18 13:19:40 +00:00
}
2024-04-18 16:22:51 +00:00
.navbar, footer {
2024-04-18 13:19:40 +00:00
background: linear-gradient(-95deg, #1a9fff, #946beb);
font-family: "Source Sans 3";
2024-04-18 13:19:40 +00:00
}
2024-04-18 16:22:51 +00:00
footer {
color: white;
}
2024-04-18 13:19:40 +00:00
.navbar .dropdown-menu {
background-color: #222;
2024-04-18 13:19:40 +00:00
}
.btn {
font-family: "Source Sans 3", sans-serif;
2024-04-19 15:01:06 +00:00
}
2024-04-18 17:12:11 +00:00
.jumbotron, .card-header {
2024-04-18 13:19:40 +00:00
color: white;
border: 1px white solid;
font-family: "Source Sans 3", sans-serif;
}
2024-04-18 16:22:51 +00:00
.my-gradient {
2024-04-19 13:39:02 +00:00
background: linear-gradient(45deg, #1a9fff, 15%, #946beb);
2024-04-18 16:22:51 +00:00
}
.jumbotron h1 {
font-family: "Nunito Sans", sans-serif;
2024-04-18 16:22:51 +00:00
}
.jumbotron p>a, footer a {
color: #222;
}
.jumbotron p>a:hover, footer a:hover{
color: white;
2024-04-18 17:12:11 +00:00
}
.card-header {
background: #946beb;
}
#screen-blank {
position: absolute;
z-index: 1;
top: 0;
left: 0;
2024-04-23 16:16:44 +00:00
}
.row.feature-list-item {
padding: 0.5rem;
background: #333;
}
.row.feature-list-item#active-feature-item {
background: transparent;
}
.feature-detail-container {
display: none;
}
.feature-detail-container#active-feature-detail {
display: inherit;
2024-04-18 13:19:40 +00:00
}