diff options
author | Teddy Wing | 2018-11-11 15:32:13 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-11 15:32:13 +0100 |
commit | 1761ecc56fc64fa6e30b92b1ac870051f5100cb8 (patch) | |
tree | c6720e54c05e49a77bc919fd07e5062aeafc91c9 | |
parent | f57ecd9c731fe46642fc98886543d893c6d5aca6 (diff) | |
download | dome-key-web-1761ecc56fc64fa6e30b92b1ac870051f5100cb8.tar.bz2 |
Make subtitle maroon
Makes it stand out a bit differently.
-rw-r--r-- | assets/styles.css | 3 | ||||
-rw-r--r-- | assets/stylesheets/color.hcss | 4 | ||||
-rw-r--r-- | index.html | 2 |
3 files changed, 8 insertions, 1 deletions
diff --git a/assets/styles.css b/assets/styles.css index d7bb46d..4ef6310 100644 --- a/assets/styles.css +++ b/assets/styles.css @@ -1,4 +1,7 @@ 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,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}ol,ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}table{border-collapse:collapse;border-spacing:0} +.color-maroon { + color: #4e0303; +} .color-murky-pond { color: #91947f; } diff --git a/assets/stylesheets/color.hcss b/assets/stylesheets/color.hcss index e8912f3..aa06e76 100644 --- a/assets/stylesheets/color.hcss +++ b/assets/stylesheets/color.hcss @@ -10,6 +10,10 @@ set(MAROON, #4e0303) set(MILK_CHOCOLATE, #402929) set(MURKY_POND, #91947f) +.color-maroon { + color: MAROON; +} + .color-murky-pond { color: MURKY_POND; } @@ -16,7 +16,7 @@ <img src="assets/logo.svg" alt="DomeKey logo" /> </header> - <p class="font-size-1.52"> + <p class="font-size-1.52 color-maroon"> Control your computer with a pair of headphones </p> |