Initial commit, added all of services and short about info
This commit is contained in:
commit
4229291ca4
12 changed files with 263 additions and 0 deletions
39
css/cute.css
Normal file
39
css/cute.css
Normal file
|
@ -0,0 +1,39 @@
|
|||
:root {
|
||||
--main-color: #EFB6C8;
|
||||
--background-color: #8174A0;
|
||||
--text-color: #FFD2A0;
|
||||
--button-text-color: #FFE8CE;
|
||||
--special: #A888B5;
|
||||
}
|
||||
|
||||
body {
|
||||
background-color: var(--background-color);
|
||||
color: var(--text-color) !important;
|
||||
font-family: 'Montserrat', sans-serif;
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: var(--special);
|
||||
}
|
||||
|
||||
.button {
|
||||
display: inline-block;
|
||||
padding: 1rem 2rem;
|
||||
color: var(--button-text-color);
|
||||
background-color: var(--main-color);
|
||||
border-radius: 5px;
|
||||
border: 2px solid var(--special);
|
||||
font-weight: bold;
|
||||
transform: translateY(0);
|
||||
transition: transform 0.5s ease;
|
||||
}
|
||||
|
||||
.button:hover {
|
||||
transform: translateY(-10px);
|
||||
}
|
||||
|
||||
small {
|
||||
font-size: 0.5rem;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue