mue/src/components/modals/welcome/welcome.scss

60 lines
802 B
SCSS
Raw Normal View History

2021-03-20 12:55:20 +00:00
@import '../main/scss/index.scss';
2021-04-02 11:31:24 +00:00
.welcomemodal {
margin-top: 40px;
}
.welcomeModalText {
line-height: 2px;
2020-09-16 10:43:58 +00:00
h2.subtitle {
font-size: 24px;
color: var(--modal-text);
text-transform: uppercase;
}
2020-09-16 10:43:58 +00:00
h1.welcometitle {
font-size: 50px;
}
}
.welcomeContent {
margin-top: 2em;
text-align: center;
padding: 25px;
2020-09-16 10:43:58 +00:00
a {
text-decoration: none;
line-height: 20px !important;
color: var(--modal-link);
cursor: pointer;
}
2020-09-16 10:43:58 +00:00
2021-03-20 12:55:20 +00:00
img.icon,
svg {
margin-top: -12px;
padding: 10px;
cursor: pointer;
transition: ease 0.2s;
2021-03-20 12:55:20 +00:00
&:hover {
transform: scale(1.1);
}
}
p {
margin-top: 0.7rem;
line-height: 1em;
}
2021-03-20 12:55:20 +00:00
img,
svg {
height: 24px;
width: auto;
}
2020-11-04 12:19:12 +00:00
}
.welcomeLink {
color: var(--modal-text) !important;
}