Dynamic UI for discord, back to outside sources :P
This commit is contained in:
parent
08f85ef076
commit
8e5a573d37
26 changed files with 144 additions and 208 deletions
|
@ -1,9 +1,5 @@
|
|||
@font-face {
|
||||
font-family: 'Rubik';
|
||||
src: url("./Rubik/Rubik-VariableFont_wght.ttf");
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
}
|
||||
@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
|
||||
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
|
||||
|
||||
* {
|
||||
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
|
||||
|
@ -57,7 +53,7 @@ a {
|
|||
padding: 8px;
|
||||
margin: 3px;
|
||||
display: inline-block;
|
||||
transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
transform: scale(0.95)
|
||||
}
|
||||
|
||||
|
@ -68,6 +64,19 @@ a {
|
|||
border-color: white;
|
||||
}
|
||||
|
||||
.activity {
|
||||
border-width: 3px;
|
||||
border-radius: 10px;
|
||||
overflow: hidden;
|
||||
margin: auto;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.activity > p {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: white;
|
||||
transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
|
@ -81,15 +90,20 @@ p {
|
|||
}
|
||||
|
||||
img {
|
||||
width: 60%;
|
||||
width: 100%;
|
||||
max-width: 135px;
|
||||
border: darkgray 4px solid;
|
||||
border-radius: 50%;
|
||||
transform: scale(0.95);
|
||||
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
|
||||
}
|
||||
|
||||
img:hover {
|
||||
.pfp {
|
||||
border-radius: 15px;
|
||||
border: darkgray 4px solid;
|
||||
width: 60%;
|
||||
transform: scale(0.95);
|
||||
border-radius: 50%;
|
||||
}
|
||||
|
||||
.pfp:hover {
|
||||
transform: scale(1.05);
|
||||
border-color: rgb(255, 200, 255);
|
||||
object-fit: cover;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue