mirror of
https://github.com/hazemKrimi/personal-website.git
synced 2026-05-01 18:00:26 +00:00
42 lines
787 B
CSS
42 lines
787 B
CSS
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('/fonts/OpenSans.ttf') format('ttf');
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'Open Sans';
|
|
src: url('/fonts/OpenSans-Italic.ttf') format('ttf');
|
|
font-weight: normal;
|
|
font-style: italic;
|
|
}
|
|
|
|
:root {
|
|
/* Colors */
|
|
--black: #131314;
|
|
--white: #FFFFFF;
|
|
--crimson: #BD1839;
|
|
--light-gray: #E7E7E7;
|
|
|
|
/* Background colors */
|
|
--dark-background: #1D1B1B;
|
|
--light-background: #FBFBFB;
|
|
|
|
/* Radiuses */
|
|
--card-radius: 30px;
|
|
--form-radius: 9px;
|
|
}
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-size: 16px;
|
|
font-family: 'Open Sans', sans-serif;
|
|
background-color: var(--background);
|
|
color: var(--text);
|
|
} |