refactor: externalize css

This commit is contained in:
quenousimporte 2024-02-20 16:23:04 +01:00
parent c6f5979a87
commit 6b676c7ba1
2 changed files with 25 additions and 16 deletions

View File

@ -13,22 +13,7 @@
<meta name="theme-color" content="white" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<meta charset="UTF-8">
<style type="text/css">
body {
font-family: helvetica;
line-height: 24px;
}
textarea {
width: 100%;
border: none;
outline: none;
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
.grey {
color: lightgrey;
}
<link rel="stylesheet" type="text/css" href="style.css">
</style>
</head>
<body>

24
style.css Normal file
View File

@ -0,0 +1,24 @@
body {
color: rgb(55, 53, 47);
font-family: helvetica;
line-height: 24px;
margin: 30px;
font-size: 16px;
}
textarea {
width: 100%;
border: none;
outline: none;
font-family: inherit;
font-size: inherit;
line-height: inherit;
color: inherit;
font-size: inherit;
}
.grey {
color: lightgrey;
}
a {
color: inherit;
}