first commit
This commit is contained in:
76
src/styles/app.scss
Normal file
76
src/styles/app.scss
Normal file
@@ -0,0 +1,76 @@
|
||||
:root {
|
||||
--font-dark: #000;
|
||||
--font-regular: #5f5f5f;
|
||||
--font-medium: #767676;
|
||||
--font-light: #868686;
|
||||
--font-lighter: #868686;
|
||||
--gattlin-grey: #a9a9a9;
|
||||
--ultra-light-accent: #e4e4e4;
|
||||
--barely-there-accent: #f9f9f9;
|
||||
--accent-orange: #f27300;
|
||||
--accent-orange-light: #ffd7b1;
|
||||
--background-blue: rgb(240, 247, 250);
|
||||
--bluest-blue: #003858;
|
||||
--haq-blue: rgb(242, 248, 255);
|
||||
}
|
||||
|
||||
html {
|
||||
height: 100vh;
|
||||
}
|
||||
body {
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New",
|
||||
monospace;
|
||||
}
|
||||
|
||||
.main-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-height: 700px;
|
||||
margin-top: 15px;
|
||||
padding-right: 0.5rem;
|
||||
padding-left: 0.5rem;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
p,
|
||||
div,
|
||||
button {
|
||||
color: var(--font-regular);
|
||||
font-family: "Roboto";
|
||||
}
|
||||
|
||||
p {
|
||||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
.app-divider {
|
||||
border-bottom: 1px solid #d2d2d2;
|
||||
}
|
||||
|
||||
/*** Media Queries **/
|
||||
|
||||
@media only screen and (max-width: 400px) {
|
||||
.ks-nodisplay {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
.tos-container {
|
||||
margin: 20px 10px;
|
||||
padding: 5px 20px;
|
||||
}
|
||||
|
||||
.tos-para {
|
||||
margin: 10px 0px;
|
||||
}
|
||||
Reference in New Issue
Block a user