27 lines
312 B
CSS
Raw Normal View History

2024-04-30 00:42:26 +04:00
html {
font-size: 14px;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
html {
position: relative;
min-height: 100%;
}
body {
margin-bottom: 60px;
2024-05-29 17:12:33 +04:00
}
.custom-link {
color: inherit;
text-decoration: none;
}
.custom-link:hover {
text-decoration: none;
color: inherit;
2024-04-30 00:42:26 +04:00
}