Commit 8cf6ea31 authored by Ysabella Panghulan's avatar Ysabella Panghulan

updated base.css

parent 7cf48ae7
* {
--primary-color: #7448F6;
--secondary-color: #E9E3FE;
}
.container {
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
header {
text-align: center;
line-height: 0.5;
}
h2 {
font-size: large;
}
.btn-primary {
width: max-content;
display: inline-block;
background-color: var(--primary-color);
padding: 0.75rem 1.2rem;
border-radius: 0.4rem;
cursor: pointer;
border: 1px solid var(--primary-color);
transition: all 400ms ease;
color: white;
}
.btn-primary:hover,
.btn-secondary:hover {
background-color: var(--secondary-color);
color: var(--primary-color);
border-color: transparent;
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
transform: translateY(-5px);
}
.btn-secondary {
width: max-content;
display: inline-block;
padding: 0.75rem 1.2rem;
border-radius: 0.4rem;
cursor: pointer;
border: 1px solid var(--primary-color);
background-color: transparent;
transition: all 400ms ease;
color: var(--primary-color)
}
a {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
}
.add-btn {
width: 25%;
display: inline-block;
padding: 0.75rem 1.2rem;
margin-top: 2.5rem;
border-radius: 0.4rem;
cursor: pointer;
border: 1px solid var(--primary-color);
transition: all 400ms ease;
color: var(--primary-color);
text-align: center;
}
.links {
display: flex;
flex-wrap: wrap;
flex-direction: row;
margin-top: 2rem;
align-items: center;
justify-content: center;
gap: 1rem;
width: 100%;
position: fixed;
bottom: 4rem;
}
@media only screen and (max-width: 1200px) {
header {
line-height: 1;
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment