initial commit
This commit is contained in:
1
app/assets/css/base/_fonts.scss
Normal file
1
app/assets/css/base/_fonts.scss
Normal file
@@ -0,0 +1 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Quicksand:wght@300;400;700&display=swap');
|
||||
8
app/assets/css/base/_reset.scss
Normal file
8
app/assets/css/base/_reset.scss
Normal file
@@ -0,0 +1,8 @@
|
||||
*{
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
html{
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
32
app/assets/css/base/_typography.scss
Normal file
32
app/assets/css/base/_typography.scss
Normal file
@@ -0,0 +1,32 @@
|
||||
h1, h2, h3, p, ul, li, label, button, input{
|
||||
font-family: 'quicksand', Arial, Helvetica, sans-serif;
|
||||
//color: blueviolet;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
h1{
|
||||
color: blueviolet;
|
||||
padding-top:1em;
|
||||
font-weight: bold;
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
h2{
|
||||
color: blueviolet;
|
||||
padding-block:1em;
|
||||
font-size: 1.5em;
|
||||
}
|
||||
|
||||
.base-input input {
|
||||
border: 1px solid var(--input-border);
|
||||
background: var(--input-bg);
|
||||
color: var(--input-text);
|
||||
}
|
||||
|
||||
label{
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
input{
|
||||
text-align:left;
|
||||
}
|
||||
Reference in New Issue
Block a user