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%;
|
|
|
|
transform: translate(-50%,-50%);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bottomItem {
|
|
|
|
margin: 0;
|
|
|
|
top: -14px;
|
|
|
|
}
|
|
|
|
|
2022-01-02 22:50:49 +00:00
|
|
|
.newAvatar {
|
|
|
|
background-color:white;
|
|
|
|
border-radius: 50%;
|
|
|
|
border: 2px solid #555;
|
|
|
|
filter: drop-shadow(1px 1px 1px #000000);
|
|
|
|
height: 200px;
|
|
|
|
width: 200px;
|
2022-01-01 23:58:44 +00:00
|
|
|
}
|