index.html
<!DOCTYPE html>
<html>
<title>CJ's Website Style Guide</title>
<head>
<!--CSS-->
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="styles.css">
<!--Fonts
This file has been truncated. show original
reset.css
/* http://meyerweb.com/eric/tools/css/reset/
v2.0-modified | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
This file has been truncated. show original
styles.css
/*Variables */
:root {
--brandprimary: rgb(129, 145, 148);
}
@media (prefers-color-scheme:dark) {
:root {
--brandprimary: #333;
}
This file has been truncated. show original