mirror of
https://github.com/yawaflua/LuckyDiamond.git
synced 2025-12-10 04:09:29 +02:00
98 lines
1.9 KiB
CSS
98 lines
1.9 KiB
CSS
body {
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
.content-grid__mobile-home {
|
|
display: grid;
|
|
grid-auto-columns: 1fr;
|
|
grid-template-columns: repeat(4, 1fr);
|
|
grid-template-rows: repeat(7, 1fr);
|
|
grid-template-areas:
|
|
"header-mobile header-mobile header-mobile header-mobile"
|
|
"main-mobile main-mobile main-mobile main-mobile"
|
|
"main-mobile main-mobile main-mobile main-mobile"
|
|
"footer-mobile footer-mobile footer-mobile footer-mobile";
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-mobile {
|
|
grid-area: main-mobile;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
/* Main */
|
|
|
|
.main-mobile__content {
|
|
margin-top: 6%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.bg-mobile {
|
|
border-radius: 10px;
|
|
background: #EF4444;
|
|
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
width: 100%;
|
|
height: 10em;
|
|
}
|
|
|
|
.main-mobile__first-line {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.main-mobile__two-line {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
|
|
.card-mobile__content { /* text display */
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.card-first {
|
|
margin: 0 2.5% 0 3%;
|
|
}
|
|
|
|
.card-game__text h2 {
|
|
color: #FFF;
|
|
font-weight: 700;
|
|
font-size: 41px;
|
|
text-align: center;
|
|
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
font-family: Montserrat Alternates;
|
|
text-transform: uppercase;
|
|
word-break: break-word;
|
|
}
|
|
|
|
.card-two {
|
|
margin: 5.1% 2.5% 0 3%;
|
|
}
|
|
|
|
.card-mobile__btn a {
|
|
text-decoration: none;
|
|
color: #000;
|
|
font-weight: 700;
|
|
text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
font-family: Montserrat Alternates;
|
|
font-size: 30px;
|
|
border-radius: 21px;
|
|
background: #FFF;
|
|
padding: 6px 11px;
|
|
box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
|
|
}
|
|
|
|
.card-mobile__btn span {
|
|
font-size: 29px;
|
|
color: #000;
|
|
}
|
|
|
|
/* /Main */
|