learning-center/public/assets/css/shared.css

121 lines
2.1 KiB
CSS
Raw Normal View History

2024-09-08 13:48:26 +03:00
*, ::after, ::before {
box-sizing: border-box;
}
body {
margin: 0;
font-family: system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
color: #212529;
font-size: 16px;
font-weight: 400;
line-height: 1.5;
}
.page-box {
max-width: 720px;
margin-right: auto;
margin-left: auto;
padding-left: 10px;
padding-right: 10px;
}
a {
color: #212529;
text-decoration: none;
}
a:hover {
color: #767676 !important;
transition: 0.17s;
}
.text-centered {
text-align: center;
}
.text-gray {
color: #adafb3;
}
.text-black {
color: #212529;
}
.text-primary {
color: #ff00fd;
}
.margin-right-8 {
margin-right: 8px;
}
.margin-bottom-8 {
margin-bottom: 8px;
}
.margin-bottom-16 {
margin-bottom: 16px;
}
.margin-bottom-32 {
margin-bottom: 32px;
}
.margin-top-24 {
margin-top: 24px;
}
h1, h2, h3 {
font-weight: 500;
line-height: 1.2;
}
h1 {
font-size: 38px;
margin-top: 16px;
margin-bottom: 12px;
}
h2 {
font-size: 24px;
}
li {
display: list-item;
}
.light-gray-background {
background-color: #fcfcfc;
}
.middle-gray-background {
background-color: #f7f7f7;
}
.rounded-corners {
border-radius: 10px;
}
.width-100 {
width: 100%;
}
.full-height {
height: 100vh;
padding-bottom: 10%;
}
.full-height-without-header {
height: calc(100vh - 110px);
margin-top: 22px;
padding-bottom: 55px;
}
.vertical-centered-on-left-side {
display: flex;
height: 80%;
flex-direction: column;
align-items: flex-start;
justify-content: center;
}
.content-centered {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
padding-bottom: 20px;
}
.max-width-280 {
max-width: 280px;
}
.min-height-380 {
min-height: 380px;
}
.vertical-padding-40 {
padding-top: 40px;
padding-bottom: 40px;
}
.margin-right-4 {
margin-right: 4px;
}
.icon {
font-size: 20px;
}