dunno
This commit is contained in:
parent
eecb2687cd
commit
7affc945ca
2 changed files with 53 additions and 29 deletions
|
@ -9,7 +9,7 @@
|
|||
h1 {
|
||||
color: rgb(225, 215, 255);
|
||||
font-size: 2.5rem;
|
||||
margin-top: 30px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
h2 {
|
||||
|
@ -18,7 +18,6 @@ h2 {
|
|||
}
|
||||
|
||||
body {
|
||||
padding: 15px;
|
||||
margin: auto;
|
||||
background-color: rgb(10, 5, 20);
|
||||
max-width: 1100px;
|
||||
|
@ -37,11 +36,11 @@ a {
|
|||
|
||||
.chip {
|
||||
font-size: 1.3rem;
|
||||
border: 2px white solid;
|
||||
border-radius: 15px;
|
||||
border: 2px gray solid;
|
||||
border-radius: 8px;
|
||||
background-color: black;
|
||||
padding: 10px;
|
||||
margin: 5px;
|
||||
padding: 8px;
|
||||
margin: 3px;
|
||||
display: inline-block;
|
||||
transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
/* transform: scale(0.95) */
|
||||
|
@ -50,7 +49,8 @@ a {
|
|||
.chip:hover {
|
||||
/* background-color: rgb(20, 10, 30); */
|
||||
/* transform: scale(1); */
|
||||
font-size: 1.4rem;
|
||||
font-size: 1.35rem;
|
||||
border-color: white;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
|
@ -66,18 +66,17 @@ p {
|
|||
}
|
||||
|
||||
img {
|
||||
width: 30%;
|
||||
max-width: 150px;
|
||||
min-width: 100px;
|
||||
border: rgb(175, 75, 200) 4px solid;
|
||||
width: 45%;
|
||||
max-width: 175px;
|
||||
border: darkgray 4px solid;
|
||||
border-radius: 50%;
|
||||
transform: scale(0.9);
|
||||
transform: scale(0.95);
|
||||
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
img:hover {
|
||||
transform: scale(1);
|
||||
/* border-color: rgb(255, 200, 255); */
|
||||
transform: scale(1.05);
|
||||
border-color: rgb(255, 200, 255);
|
||||
object-fit: cover;
|
||||
}
|
||||
|
||||
|
@ -88,6 +87,15 @@ hr {
|
|||
margin: 20px 10%;
|
||||
}
|
||||
|
||||
#card {
|
||||
background-image: linear-gradient(-45deg, rgb(75, 25, 125), rgb(100, 30, 100));
|
||||
background-color: rgb(50, 25, 100);
|
||||
padding: 15px;
|
||||
border: 2px white solid;
|
||||
margin: auto;
|
||||
max-width: 90%;
|
||||
}
|
||||
|
||||
.love::before {
|
||||
content: "<3 ";
|
||||
color: rgb(255, 100, 150);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue