refactor: externalize css
This commit is contained in:
parent
c6f5979a87
commit
6b676c7ba1
17
index.php
17
index.php
|
@ -13,22 +13,7 @@
|
||||||
<meta name="theme-color" content="white" />
|
<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 name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<style type="text/css">
|
<link rel="stylesheet" type="text/css" href="style.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;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
|
@ -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;
|
||||||
|
}
|
Loading…
Reference in New Issue