You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.4 KiB
CSS
69 lines
1.4 KiB
CSS
@font-face {
|
|
font-family: 'worksans';
|
|
src: url('css/fonts/worksans/WorkSans-Regular.woff') format('opentype');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'worksans';
|
|
src: url('./css/fonts/worksans/WorkSans-Bold.woff') format('opentype');
|
|
font-weight: bold;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'worksans';
|
|
src: url('./css/fonts/worksans/WorkSans-Italic.woff') format('opentype');
|
|
font-weight: normal;
|
|
font-style: oblique;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'worksans';
|
|
src: url('./css/fonts/worksans/WorkSans-Bold.woff') format('opentype');
|
|
font-weight: bold;
|
|
font-style: oblique;
|
|
}
|
|
|
|
body {
|
|
font-family: 'worksans', sans-serif;
|
|
font-size: calc(1rem + 1vw);
|
|
min-height: 100vh;
|
|
background-color: #130149;
|
|
text-align: center;
|
|
margin: 60px;
|
|
box-sizing: border-box;
|
|
|
|
/* Center the content */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
h1 {
|
|
margin-top: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
h2 {
|
|
font-family: 'worksans', sans-serif;
|
|
font-style: oblique;
|
|
font-size: 1.1rem;
|
|
color: white;
|
|
margin-top: 30px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: 0.9rem;
|
|
margin-top: 500px;
|
|
}
|
|
|
|
#header {
|
|
font-family:'worksans', sans-serif;
|
|
font-size: calc(1rem + 0.5vw);
|
|
margin-top: 15px;
|
|
color: white;
|
|
}
|