Files
element-web/res/css/structures/_HomePage.pcss
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

100 lines
2.5 KiB
Plaintext
Raw Normal View History

/*
2024-09-09 14:57:16 +01:00
Copyright 2019-2024 New Vector Ltd.
Copyright 2017 Vector Creations Ltd
2024-09-09 14:57:16 +01:00
Copyright 2016 OpenMarket Ltd
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
2024-09-09 14:57:16 +01:00
Please see LICENSE files in the repository root for full details.
*/
.mx_HomePage {
max-width: 960px;
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
}
2020-04-07 10:48:56 +01:00
.mx_HomePage_default {
text-align: center;
display: flex;
2020-04-07 10:48:56 +01:00
.mx_HomePage_default_wrapper {
margin: auto;
2020-04-07 10:48:56 +01:00
}
img {
2020-04-07 13:34:10 +01:00
height: 48px;
2020-04-07 10:48:56 +01:00
}
h1 {
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-04-07 10:48:56 +01:00
font-size: $font-32px;
2023-06-29 11:30:25 +01:00
line-height: 1.375;
2020-04-07 10:48:56 +01:00
margin-bottom: 4px;
}
h2 {
2020-04-07 10:48:56 +01:00
margin-top: 4px;
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-04-07 10:48:56 +01:00
font-size: $font-18px;
line-height: $font-25px;
color: $muted-fg-color;
}
.mx_MiniAvatarUploader {
margin: 0 auto;
}
2020-04-07 10:48:56 +01:00
.mx_HomePage_default_buttons {
2021-10-05 10:11:25 -04:00
display: flex;
margin: 60px auto 0;
2020-04-07 10:48:56 +01:00
width: fit-content;
.mx_AccessibleButton {
padding: 73px 8px 15px; /* top: 20px top padding + 40px icon + 13px margin */
2020-04-07 10:48:56 +01:00
width: 160px;
2021-10-05 10:11:25 -04:00
min-height: 132px;
margin: 20px;
2020-04-07 10:48:56 +01:00
position: relative;
display: inline-block;
border-radius: 8px;
2020-04-07 13:34:10 +01:00
vertical-align: top;
2020-04-07 13:40:25 +01:00
word-break: break-word;
box-sizing: border-box;
2020-04-07 10:48:56 +01:00
2023-06-29 11:30:25 +01:00
font-weight: var(--cpd-font-weight-semibold);
2020-04-07 10:48:56 +01:00
font-size: $font-15px;
line-height: $font-20px;
color: #fff; /* on all themes */
2021-11-11 14:37:29 +01:00
background-color: $accent;
2020-04-07 10:48:56 +01:00
&::before {
top: 20px;
left: 60px; /* (160px-40px)/2 */
2020-04-07 10:48:56 +01:00
width: 40px;
height: 40px;
content: "";
position: absolute;
background-color: #fff; /* on all themes */
2020-04-07 10:48:56 +01:00
mask-repeat: no-repeat;
mask-size: contain;
}
&.mx_HomePage_button_sendDm::before {
mask-image: url("$(res)/img/element-icons/feedback.svg");
2020-04-07 10:48:56 +01:00
}
2022-03-24 19:51:18 +00:00
2020-04-07 10:48:56 +01:00
&.mx_HomePage_button_explore::before {
mask-image: url("$(res)/img/element-icons/roomlist/explore.svg");
2020-04-07 10:48:56 +01:00
}
2022-03-24 19:51:18 +00:00
&.mx_HomePage_button_createGroup::before {
mask-image: url("$(res)/img/element-icons/group-members.svg");
}
2020-04-07 10:48:56 +01:00
}
}
}