2022-01-01 23:58:44 +00:00
|
|
|
html,
|
|
|
|
body {
|
|
|
|
height: 100%;
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
|
|
|
position: fixed;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#app {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2022-01-02 21:41:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.appCenter {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
2022-03-08 20:15:27 +00:00
|
|
|
transform: translate(-50%,-50%) translate(0,-20px);
|
2022-01-02 22:50:49 +00:00
|
|
|
}
|
|
|
|
|
2022-01-14 16:21:42 +00:00
|
|
|
.bottomBar {
|
|
|
|
position: fixed;
|
|
|
|
bottom: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
2022-03-15 18:20:57 +00:00
|
|
|
.advancedSwitch{
|
|
|
|
width: 240;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(55px, 0px);
|
|
|
|
margin-right: 0;
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
2022-01-14 16:21:42 +00:00
|
|
|
.bottomItem {
|
|
|
|
margin: 0;
|
|
|
|
top: -14px;
|
|
|
|
}
|
|
|
|
|
2022-01-29 19:51:26 +00:00
|
|
|
.profileNickname {
|
|
|
|
margin: 0;
|
2022-01-30 15:18:03 +00:00
|
|
|
left: -16px;
|
2022-01-29 19:51:26 +00:00
|
|
|
}
|
|
|
|
|
2022-01-02 22:50:49 +00:00
|
|
|
.newAvatar {
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid #555;
|
|
|
|
filter: drop-shadow(1px 1px 1px #000000);
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2022-01-29 19:51:26 +00:00
|
|
|
}
|
|
|
|
|
2022-01-30 15:18:03 +00:00
|
|
|
.profileAvatar {
|
2022-01-29 19:51:26 +00:00
|
|
|
border: 0.5px solid #555;
|
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
|
|
|
left: 35px;
|
|
|
|
}
|
|
|
|
|
2022-01-30 15:18:03 +00:00
|
|
|
.smallAvatar {
|
2022-01-29 19:51:26 +00:00
|
|
|
border: 0.5px solid #555;
|
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
2022-01-30 15:18:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.flippedSmallAvatar {
|
|
|
|
transform: scaleX(-1);
|
|
|
|
border: 0.3px solid #555;
|
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
2022-02-01 19:43:33 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 01:37:24 +00:00
|
|
|
.phoneFlippedSmallAvatar img{
|
2022-02-01 19:43:33 +00:00
|
|
|
transform: scaleX(-1);
|
2022-02-04 01:37:24 +00:00
|
|
|
border: 1.3px solid #1976d2;
|
|
|
|
-webkit-filter: grayscale(100%);
|
|
|
|
filter: grayscale(100%) brightness(150%) contrast(150%) drop-shadow(0.7px 0.7px 0.7px #000000);
|
2022-02-01 19:43:33 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 09:29:05 +00:00
|
|
|
.phoneFlippedSmallAvatar:after {
|
|
|
|
content: '';
|
|
|
|
position: absolute;
|
|
|
|
top: 0; left: 0; bottom: 0; right: 0;
|
2022-02-04 01:37:24 +00:00
|
|
|
border-radius: 50%;
|
|
|
|
border: 2.4px solid #1976d2;
|
2022-02-02 09:29:05 +00:00
|
|
|
box-shadow: inset 0px 0px 35px rgb(255, 255, 255);
|
|
|
|
}
|
|
|
|
|
2022-02-01 19:43:33 +00:00
|
|
|
.bookAvatar {
|
|
|
|
border-radius: 50%;
|
|
|
|
transform: scaleX(-1);
|
|
|
|
border: 0.3px solid #555;
|
|
|
|
filter: drop-shadow(0.5px 0.5px 0.5px #000000);
|
2022-01-01 23:58:44 +00:00
|
|
|
}
|