Refactored some things in the frontend
This commit is contained in:
parent
c72e2bd2e9
commit
49106ea1b6
15 changed files with 1901 additions and 49 deletions
|
@ -1,7 +1,3 @@
|
|||
:root {
|
||||
--primary: #fff;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 8px 20px;
|
||||
border-radius: 2px;
|
||||
|
@ -12,13 +8,13 @@
|
|||
|
||||
.btn--primary {
|
||||
background-color: var(--primary);
|
||||
color: #BDC3C7;
|
||||
color: var(--secondary);
|
||||
border: 1px solid var(--primary);
|
||||
}
|
||||
|
||||
.btn--outline {
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
color: var(--primary);
|
||||
padding: 8px 20px;
|
||||
border: 1px solid var(--primary);
|
||||
transition: all 0.3s ease-out;
|
||||
|
@ -37,7 +33,7 @@
|
|||
.btn--large:hover,
|
||||
.btn--medium:hover {
|
||||
transition: all 0.3s ease-out;
|
||||
background: #fff;
|
||||
color: #BDC3C7;
|
||||
background: var(--primary);
|
||||
color: var(--secondary);
|
||||
transition: 250ms;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue