flash/dev/style.css

106 lines
1.8 KiB
CSS
Raw Permalink Normal View History

2022-03-13 09:50:14 -04:00
* {
font-family: 'Amaranth', sans-serif;
}
2022-04-08 18:06:49 -04:00
@keyframes bg-gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes fadeIn {
0% {opacity:0;}
10% {opacity:0.4;}
50% {opacity:0.8}
100% {opacity:1;}
}
2022-03-13 08:49:29 -04:00
body {
2022-04-08 18:06:49 -04:00
background: linear-gradient(-45deg, #349ef0, #7a4abe, #349ef0);
background-size: 400% 400%;
animation: bg-gradient 15s ease infinite;
2022-03-13 08:49:29 -04:00
}
2022-03-13 09:50:14 -04:00
p {
2022-04-07 20:52:57 -04:00
color:#b5b7eb;
2022-04-08 18:06:49 -04:00
animation: fadeIn ease-out 0.8s;
2022-03-13 08:49:29 -04:00
}
2022-03-13 09:50:14 -04:00
h1 {
2022-04-07 20:52:57 -04:00
position:relative;
left:80px;
color:#b5b7eb;
2022-04-08 18:06:49 -04:00
animation: fadeIn ease-out 0.8s;
2022-03-13 09:50:14 -04:00
}
button {
2022-04-08 18:06:49 -04:00
background-color: rgba(255,255,255,0.3);
2022-04-07 20:52:57 -04:00
color: #232f42;
border: 2.5px solid #6186c2;
border-radius: 10px;
padding: 5px 13px;
margin-bottom: 6px;
transition-duration: 0.45s;
2022-04-08 18:06:49 -04:00
animation: fadeIn ease-out 0.8s;
2022-04-07 20:52:57 -04:00
}
button:hover {
2022-04-08 18:06:49 -04:00
background-color:rgba(0,0,0,0.2);
2022-04-07 20:52:57 -04:00
border: 2.5px solid #81a1d6;
2022-04-08 18:06:49 -04:00
color: #9dade3;
2022-03-13 09:50:14 -04:00
}
a:link {
color:#a0b4db;
}
a:visited {
color:#b5b7eb;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px 10%;
2022-04-08 18:06:49 -04:00
background: linear-gradient(-45deg, #626ce0, #349ef0, #626ce0);
background-size: 400% 400%;
animation: bg-gradient 15s ease infinite;
2022-04-07 20:52:57 -04:00
border-radius:100px;
border: linear-gradient(90deg, rgba(52,158,240,1) 0%, rgba(74,87,191,1) 100%);
border: 10px solid #4f71b0;
2022-04-08 18:06:49 -04:00
animation: fadeIn ease-out 0.8s;
2022-03-13 09:50:14 -04:00
}
.logo {
cursor: pointer;
}
.nav__links {
list-style: none;
}
.nav__links button {
display: inline-block;
padding: 10px 10px;
2022-04-08 11:04:14 -04:00
border: 0px solid #6186c2;
background-color: rgba(0, 0, 0, 0);
font-size: 20px;
color: #b5b7eb;
2022-03-13 09:50:14 -04:00
}
2022-04-07 20:52:57 -04:00
.nav__links button:hover {
2022-04-08 11:04:14 -04:00
color: #ffffff;
2022-03-13 08:49:29 -04:00
}
2022-03-13 09:50:14 -04:00
2022-04-07 20:52:57 -04:00
p1 {
font-size: 1.75em;
color:#b5b7eb;
2022-03-13 09:50:14 -04:00
}