meow/style.css

77 lines
1 KiB
CSS
Raw Normal View History

2024-01-17 22:52:12 +03:00
body {
background-color: #24273a;
color: #cad3f5;
font-family: 'Open Sans';
2023-11-28 10:59:49 +03:00
}
2024-01-17 22:52:12 +03:00
.top {
display: inline-block;
margin-left: 10rem;
2023-11-28 10:59:49 +03:00
}
2024-01-17 22:52:12 +03:00
h1 {
margin-left: 1rem;
2023-11-28 10:59:49 +03:00
}
2024-01-17 22:52:12 +03:00
.pfp {
border-radius: 50%;
padding: 1rem;
float: none;
transition: 0.3s;
position: absolute
2023-11-28 10:59:49 +03:00
2024-01-17 22:52:12 +03:00
}
.pfp:hover {
scale: 125%;
transition: 0.3s;
}
p {
margin-left: 1rem;
}
h3 {
margin-top: 4rem;
}
.logo,
.logo2 {
width: 2rem;
float: left;
position: relative;
transition: 0.3s;
}
.logo:hover,
.logo2:hover {
background-color: #b7bdf8;
padding: 5px;
scale: 125%;
border-radius: 10px;
transition: 0.3s;
}
.logo:hover {
content: url(catpdiscordhover.png);
}
.logo2:hover {
content: url(catpghover.png);
}
h4 {
margin-left: 1rem;
}
.aboutbox {
margin-left: 2rem;
}
a:link {
color: #c6a0f6;
2023-11-28 10:59:49 +03:00
}
a:visited {
2024-01-17 22:52:12 +03:00
color: #b7bdf8;
}
.buttons {
margin-left: 1rem;
height: 4rem;
display:flex;
justify-content: flex-start;
align-items: center;
}
.buttons .btn {
width: 3rem;
display: flex;
justify-content: center;
}