diff options
author | Matthew Lemon <y@yulqen.org> | 2024-11-26 21:30:03 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-11-26 21:30:03 +0000 |
commit | 54513b64369a880747191ff13f217002972f2b18 (patch) | |
tree | 50af0d4187bbe3896bb3e2c7807664c28cacacb7 /alphabetlearning/static/css/project.css | |
parent | 04e490c0b0b65a21c531ac50a5ba321c79e14fa2 (diff) |
Added two boxes of text to the home page.
Diffstat (limited to 'alphabetlearning/static/css/project.css')
-rw-r--r-- | alphabetlearning/static/css/project.css | 105 |
1 files changed, 91 insertions, 14 deletions
diff --git a/alphabetlearning/static/css/project.css b/alphabetlearning/static/css/project.css index 45cc949..29a4e18 100644 --- a/alphabetlearning/static/css/project.css +++ b/alphabetlearning/static/css/project.css @@ -1,16 +1,102 @@ /* These styles are generated from project.scss. */ +.roboto-thin { + font-family: "Roboto", sans-serif; + font-weight: 100; + font-style: normal; +} + +.roboto-light { + font-family: "Roboto", sans-serif; + font-weight: 300; + font-style: normal; +} + +.roboto-regular { + font-family: "Roboto", sans-serif; + font-weight: 400; + font-style: normal; +} + +.roboto-medium { + font-family: "Roboto", sans-serif; + font-weight: 500; + font-style: normal; +} + +.roboto-bold { + font-family: "Roboto", sans-serif; + font-weight: 700; + font-style: normal; +} + +.roboto-black { + font-family: "Roboto", sans-serif; + font-weight: 900; + font-style: normal; +} + +.roboto-thin-italic { + font-family: "Roboto", sans-serif; + font-weight: 100; + font-style: italic; +} + +.roboto-light-italic { + font-family: "Roboto", sans-serif; + font-weight: 300; + font-style: italic; +} + +.roboto-regular-italic { + font-family: "Roboto", sans-serif; + font-weight: 400; + font-style: italic; +} + +.roboto-medium-italic { + font-family: "Roboto", sans-serif; + font-weight: 500; + font-style: italic; +} + +.roboto-bold-italic { + font-family: "Roboto", sans-serif; + font-weight: 700; + font-style: italic; +} + +.roboto-black-italic { + font-family: "Roboto", sans-serif; + font-weight: 900; + font-style: italic; +} + +body { + font-family: 'Roboto', sans-serif; +} + +h1, h2, h3, h4, h5, h6 { + font-weight: 700; /* Bold for headings */ +} + +p, label, button { + font-weight: 400; /* Regular for body text */ +} + +.custom-text { + font-family: 'Roboto', sans-serif; + font-weight: 400; + line-height: 1.5; + color: #212529; +} + .alert-debug { color: black; background-color: white; border-color: #d6e9c6; } -* { - font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; - /*margin: 0;*/ - /*padding: 0;*/ -} .alert-error { color: #b94a48; @@ -18,15 +104,6 @@ border-color: #eed3d7; } -@font-face { - font-family: 'Lato'; - src: url(../fonts/Lato-Regular.ttf); -} - -@font-face { - font-family: 'Lato-Italic'; - src: url(../fonts/Lato-Italic.ttf); -} /*@font-face {*/ /* font-family: 'Franklin';*/ |