Walmart script in production! And more notes.
This commit is contained in:
@ -1,10 +1,10 @@
|
||||
/* Custom Variables | Color Scheme */
|
||||
|
||||
:root {
|
||||
--primary: #fff;
|
||||
--text-light: #0390fc;
|
||||
--background: #191E29;
|
||||
--background-light: #202633;
|
||||
--primary: #fff;
|
||||
--text-light: #E5E9F0;
|
||||
--background: #3B4252;
|
||||
--background-light: #4C566A;
|
||||
}
|
||||
|
||||
*,
|
||||
@ -18,31 +18,31 @@
|
||||
body {
|
||||
margin-bottom: 0;
|
||||
flex-grow: 1;
|
||||
background: linear-gradient(145deg, #179160, #096F8E, #F7BB17, #D64A28, #00283C);
|
||||
background-size: 700% 550%;
|
||||
animation: gradient 7s ease-in-out infinite;
|
||||
height: 125vh;
|
||||
margin-top: -100px;
|
||||
padding-top: 100px;
|
||||
background: linear-gradient(
|
||||
145deg, #81A1C1, #88C0D0, #8FBCBB, #A3BE8C, #EBCB8B, #D08770
|
||||
);
|
||||
background-size: 700% 550%;
|
||||
animation: gradient 7s ease-in-out infinite;
|
||||
height: 125vh;
|
||||
margin-top: -100px;
|
||||
padding-top: 100px;
|
||||
color: var(--text-light);
|
||||
font-family: 'Inter', sans-serif;
|
||||
|
||||
padding: 2rem 4rem;
|
||||
|
||||
background-color: var(--background);
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
@keyframes gradient {
|
||||
0% {
|
||||
background-position: 0% 79%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 22%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 79%;
|
||||
}
|
||||
0% {
|
||||
background-position: 0% 79%;
|
||||
}
|
||||
50% {
|
||||
background-position: 100% 22%;
|
||||
}
|
||||
100% {
|
||||
background-position: 0% 79%;
|
||||
}
|
||||
}
|
||||
|
||||
h1 {
|
||||
@ -107,7 +107,7 @@ main {
|
||||
|
||||
background-color: var(--background-light);
|
||||
border-radius: 15px;
|
||||
border: 1px solid rgba(255,255,255,.05);
|
||||
border: 1px solid #B48EAD;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
@ -139,24 +139,18 @@ main {
|
||||
|
||||
.card__icon {
|
||||
font-size: 2rem;
|
||||
|
||||
padding: 1rem;
|
||||
|
||||
background-color: rgba(255, 255, 255, 0.05);
|
||||
background-color: #81A1C1;
|
||||
border-radius: 50%;
|
||||
|
||||
display: grid;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
.card__name {
|
||||
font-weight: 400;
|
||||
|
||||
transform: translate(-50%, -50%);
|
||||
|
||||
position: absolute;
|
||||
bottom: -25%;
|
||||
left: 50%;
|
||||
|
||||
transition: 0.1s;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user