website/assets/sass/general.scss

91 lines
1.5 KiB
SCSS
Raw Normal View History

2023-06-23 21:20:22 +00:00
@import url('https://fonts.googleapis.com/css2?family=Bona+Nova:wght@400;700&family=Roboto:wght:300;400;500&display=swap');
2023-03-31 22:14:22 +00:00
.serif-font {
font-family: 'Bona Nova', serif;
}
2023-06-23 21:20:22 +00:00
2022-09-28 21:43:45 +00:00
body {
// font-family: 'Trebuchet MS', Tahoma,sans-serif;
2022-10-14 18:56:56 +00:00
// font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
2023-03-31 22:14:22 +00:00
// font-family: "Open Sans","Segoe UI",HelveticaNeue-Light,"Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif;
font-family: 'Roboto', sans-serif;
2023-06-23 21:20:22 +00:00
font-weight: 400;
margin: 0;
2023-05-21 20:40:07 +00:00
font-size: 17px;
2023-03-31 22:14:22 +00:00
line-height: 1.6;
}
* {
box-sizing: border-box;
}
2023-03-31 22:14:22 +00:00
h1, h2, h3, .title {
font-family: 'Bona Nova', serif;
}
h1 {
2023-03-31 22:14:22 +00:00
font-size: 3rem;
color: $secondary;
margin-top: 3rem;
margin-bottom: 1rem;
}
h2 {
2023-03-31 22:14:22 +00:00
font-size: 1.75rem;
color: $secondary;
}
a {
color: darken($accent, 6%);
}
2023-03-31 22:14:22 +00:00
a:hover {
opacity: 0.8;
2022-09-28 21:43:45 +00:00
}
2022-10-14 18:56:56 +00:00
.secondary-bg {
2023-03-31 22:14:22 +00:00
h2 {
color: white;
}
a {
color: white;
}
2023-03-31 22:14:22 +00:00
color: white;
.button {
background-color: $background-secondary;
color: white;
&:hover {
background-color: lighten($background-secondary, 14%);
}
2023-03-31 22:14:22 +00:00
}
background-color: darken($background-secondary, 15%);
}
.separation-section {
margin-top: 3rem;
padding: 1.2rem 0;
2023-03-31 22:14:22 +00:00
}
2023-05-21 20:40:07 +00:00
.w-100 {
width: 100px;
}
.w-200 {
width: 200px;
}
2023-05-26 19:44:22 +00:00
img {
max-width: 100%;
}
.grid {
display: grid;
}
.grid-2 {
grid-template-columns: 1fr 1fr;
}