1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- body.welcome-page {
- background: inherit;
- overflow: auto;
- }
-
- .welcome {
- background-color: $welcomePageHeaderBackground;
- display: flex;
- flex-direction: column;
- font-family: $welcomePageFontFamily;
- justify-content: space-between;
- min-height: 100vh;
- position: relative;
-
- .header {
- align-items: center;
- display: flex;
- flex-direction: column;
- min-height: fit-content;
- overflow: hidden;
- position: relative;
- text-align: center;
-
- .header-text {
- display: flex;
- flex-direction: column;
- margin-top: $watermarkHeight + 80;
- margin-bottom: 36px;
- max-width: calc(100% - 40px);
- width: 650px;
- z-index: $zindex2;
- }
-
- .header-text-title {
- color: $welcomePageTitleColor;
- font-size: 2.5rem;
- font-weight: 500;
- letter-spacing: 0;
- line-height: 1.18;
- margin-bottom: 16px;
- }
-
- .header-text-description {
- color: $welcomePageDescriptionColor;
- font-size: 1rem;
- font-weight: 400;
- line-height: 24px;
- margin-bottom: 20px;
- }
-
- #enter_room {
- align-items: center;
- display: flex;
- max-width: calc(100% - 40px);
- margin-bottom: 20px;
- position: relative;
- width: 650px;
- z-index: $zindex2;
-
- .enter-room-input {
- display: inline-block;
- margin-right: 8px;
- width: 100%;
- }
- }
-
- .tab-container {
- font-size: 16px;
- position: relative;
- text-align: left;
- width: 650px;
- }
- }
-
- .welcome-page-button {
- font-size: 16px;
- }
-
- .welcome-page-settings {
- color: $welcomePageDescriptionColor;
- position: absolute;
- right: 10px;
- z-index: $zindex2;
-
- * {
- cursor: pointer;
- }
- }
-
- .welcome-watermark {
- position: absolute;
- width: 100%;
- height: 100%;
- }
- }
|