Refactoring because of local scripts and tabs
In this commit I want to refactor some things. - I don't want to use external connections so I moved all that shit to localhost - I do not need so many spaces as it is bad for formatting
This commit is contained in:
parent
80f9586d36
commit
29142a9977
14 changed files with 393 additions and 380 deletions
|
@ -1,44 +1,43 @@
|
|||
:root {
|
||||
--primary: #fff;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 8px 20px;
|
||||
border-radius: 2px;
|
||||
outline: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn--primary {
|
||||
background-color: var(--primary);
|
||||
color: #242424;
|
||||
border: 1px solid var(--primary);
|
||||
}
|
||||
|
||||
.btn--outline {
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
padding: 8px 20px;
|
||||
border: 1px solid var(--primary);
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.btn--medium {
|
||||
padding: 8px 20px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.btn--large {
|
||||
padding: 12px 26px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.btn--large:hover,
|
||||
.btn--medium:hover {
|
||||
transition: all 0.3s ease-out;
|
||||
background: #fff;
|
||||
color: #242424;
|
||||
transition: 250ms;
|
||||
}
|
||||
|
||||
--primary: #fff;
|
||||
}
|
||||
|
||||
.btn {
|
||||
padding: 8px 20px;
|
||||
border-radius: 2px;
|
||||
outline: none;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.btn--primary {
|
||||
background-color: var(--primary);
|
||||
color: #242424;
|
||||
border: 1px solid var(--primary);
|
||||
}
|
||||
|
||||
.btn--outline {
|
||||
background-color: transparent;
|
||||
color: #fff;
|
||||
padding: 8px 20px;
|
||||
border: 1px solid var(--primary);
|
||||
transition: all 0.3s ease-out;
|
||||
}
|
||||
|
||||
.btn--medium {
|
||||
padding: 8px 20px;
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
.btn--large {
|
||||
padding: 12px 26px;
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
.btn--large:hover,
|
||||
.btn--medium:hover {
|
||||
transition: all 0.3s ease-out;
|
||||
background: #fff;
|
||||
color: #242424;
|
||||
transition: 250ms;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue