FreeTube/src/renderer/components/ft-profile-bubble/ft-profile-bubble.css

40 lines
802 B
CSS

.bubblePadding {
width: 100px;
height: 115px;
padding: 10px 10px 30px 10px;
cursor: pointer;
-webkit-transition: background 0.2s ease-out;
-moz-transition: background 0.2s ease-out;
-o-transition: background 0.2s ease-out;
transition: background 0.2s ease-out;
}
.bubblePadding:hover {
background-color: var(--side-nav-hover-color);
-moz-transition: background 0.2s ease-in;
-o-transition: background 0.2s ease-in;
transition: background 0.2s ease-in;
}
.bubble {
width: 70px;
height: 70px;
margin: 20px auto 5px auto;
border-radius: 50%;
-webkit-border-radius: 50%;
}
.initial {
font-size: 35px;
line-height: 1em;
text-align: center;
padding: 17.5px 0;
}
.profileName {
font-size: 14px;
line-height: 1.5em;
overflow: hidden;
text-align: center;
}