add basic styling and fonts
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Aadil Ayub 2021-10-15 19:57:16 +05:00
parent 276f2b455c
commit 8c9168f330
3 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>32m</title>
<link rel="stylesheet" href="fonts/fonts.css">
<link rel="stylesheet" href="style.css">
</head>
<body>

8
style.css Normal file
View File

@ -0,0 +1,8 @@
:root {
--red: #A12626;
}
body {
font-family: 'Concourse OT';
color: var(--red);
}