mootfrost-dev/static/resources/styles/index.style.css

129 lines
2 KiB
CSS

@import url(style.css);
.main-title {
text-align: center;
font-size: 3em;
font-weight: 800;
color: white;
line-height: 0.9em;
letter-spacing: 0.1em;
margin: 5vh;
}
.main-title .thin {
font-weight: 200;
}
.btn-social {
margin-left: 5px;
margin-right: 5px;
text-decoration: none;
}
.lower-buttons {
font-size: 1.3em;
margin-top: 15px;
display: flex;
text-align: center;
font-family: Comfortaa, sans-serif;
}
.lower-buttons a {
text-decoration: none;
color: lightgray;
margin-bottom: 3px;
margin-top: 3px;
transition: 0.3s;
}
.lower-buttons a:hover {
transition: 0.3s;
}
.email {
margin-top: 10px;
display: flex;
text-align: center;
font-family: Comfortaa, sans-serif;
}
.email a{
text-decoration: none;
color: lightgray;
margin-bottom: 3px;
margin-top: 3px;
transition: 0.3s;
}
.email a:hover {
color: #e6ca1c;
transition: 0.3s;
}
.lower-buttons a:hover {
color: white;
}
.lower-buttons a::before {
position: relative;
margin-right: 7px;
content: "";
display: inline-block;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: white;
background-repeat: no-repeat;
transition: 0.3s;
opacity: 0.4;
}
.lower-buttons a::after {
position: relative;
margin-left: 7px;
content: "";
display: inline-block;
top: 50%;
width: 12px;
height: 12px;
border-radius: 50%;
background-color: white;
background-repeat: no-repeat;
transition: 0.3s;
opacity: 0.4;
}
.lower-buttons a:hover::before {
transform: translateX(-10px);
opacity: 1;
transition: 0.3s;
}
.lower-buttons a:hover::after {
transform: translateX(10px);
opacity: 1;
transition: 0.3s;
}
.divider {
background-color: white;
width: 100%;
border-top: 3px solid #bbb;
border-radius: 8px;
opacity: 0.5;
}
.lower-buttons a.email:hover::before {
background-color: #e6ca1c;
}
.lower-buttons a.email:hover::after {
background-color: #e6ca1c;
}