This repository has been archived on 2023-11-18. You can view files and clone it, but cannot push or open issues or pull requests.
ha-client.app/assets/css/style.scss

50 lines
794 B
SCSS
Raw Normal View History

2019-02-08 14:09:35 +02:00
---
---
2019-02-08 16:10:50 +02:00
$primary-color: #2196F3;
2019-02-08 16:12:50 +02:00
$secondary-color: #f3b600;
2019-02-08 14:09:35 +02:00
@import "{{ site.theme }}";
2019-02-08 17:04:08 +02:00
a, a:link, a:visited, a:hover, a:active {
color: $primary-color;
2019-02-08 16:12:50 +02:00
}
2019-02-08 14:09:35 +02:00
.page-header {
2019-02-08 16:10:50 +02:00
background-color: $primary-color;
2019-02-08 14:18:47 +02:00
background-image: url('/assets/images/header.png');
2019-02-08 14:13:58 +02:00
background-position: center;
background-size: cover;
2019-02-08 15:08:03 +02:00
a {
color: white;
}
a:hover {
color: white;
text-decoration: none;
}
2019-02-08 14:09:35 +02:00
}
2019-02-08 14:20:04 +02:00
2019-02-16 13:08:05 +02:00
.site-footer {
text-align: center;
a {
display: inline-block;
padding: 0 0.8rem 0 0.8rem;
}
}
2019-02-08 14:20:04 +02:00
.project-tagline {
opacity: 1;
}
2019-02-08 14:47:25 +02:00
2019-02-08 16:10:50 +02:00
.main-content h1, .main-content h2, .main-content h3, .main-content h4, .main-content h5, .main-content h6 {
2019-02-08 17:04:08 +02:00
color: $secondary-color;
2019-02-08 16:10:50 +02:00
}
2019-02-08 14:54:54 +02:00
@media screen and (min-width: 64em) {
.page-header {
padding: 4rem 6rem;
}
2019-02-08 14:47:25 +02:00
}