Add CSS
Well, according to a certain someone, a web-page is an onion. Source: http://www.thenoodleincident.com/tutorials/design_rant/2.htmlmaster
parent
402cb27329
commit
4a4907ea2c
|
@ -1,4 +1,8 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" type="text/css" href="solarized_light.css">
|
||||||
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<p>
|
<p>
|
||||||
Welcome.
|
Welcome.
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
:root {
|
||||||
|
--base3: #fdf6e3;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
background-color: var(--base3);
|
||||||
|
}
|
Loading…
Reference in New Issue