Files

81 lines
1018 B
CSS
Raw Permalink Normal View History

2024-03-15 23:42:01 +01:00
.card {
cursor: pointer;
display: flex;
flex-direction: column;
height: 100%;
}
.card-content {
flex-grow: 1;
}
2024-03-13 19:37:09 +01:00
.footer {
2024-03-22 05:46:06 -04:00
padding: .5rem 1rem;
2024-03-13 19:37:09 +01:00
position: fixed;
bottom: 0;
width: 100%;
2024-03-14 02:27:10 +01:00
}
.footer q {
font-size: 0.9rem;
line-height: 1.2;
}
.footer small {
font-size: 0.8rem;
2024-03-13 19:37:09 +01:00
}
2024-03-22 08:26:53 -04:00
.has-border-top {
border-top: 2px solid #da131a;
}
.has-shadow-top {
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
2024-03-26 09:20:17 -04:00
hr {
margin-block: .5rem !important;
}
2024-06-09 10:00:52 +04:00
#kontak {
display: flex;
justify-content: center;
2024-08-04 00:33:19 +02:00
margin-bottom: .6em;
2024-06-09 10:00:52 +04:00
}
#kontak button {
2024-08-04 00:33:19 +02:00
margin-right: .6em;
2024-06-09 10:00:52 +04:00
}
2024-03-18 18:54:08 +01:00
.orientation-modal, .charte-modal {
2024-03-13 19:37:09 +01:00
color: #da131a;
transition: color 0.3s ease;
2024-03-18 19:05:31 +01:00
text-decoration: underline;
2024-03-13 19:37:09 +01:00
}
2024-03-18 18:54:08 +01:00
.orientation-modal:hover, .charte-modal:hover {
color: rgb(255, 20, 28);
2024-03-13 19:37:09 +01:00
}
2024-03-13 22:14:35 +01:00
2024-03-18 18:33:34 +01:00
strong {
color: #f5f5f5;
}
2024-03-13 22:14:35 +01:00
#template {
margin-bottom: 10em;
}
2024-03-14 01:27:47 +01:00
@media (max-width: 768px) {
.columns.is-multiline {
max-width: 100%;
}
2024-03-18 02:10:19 +01:00
2024-03-22 05:30:38 -04:00
.footer {
font-size: xx-small;
}
2024-03-18 02:10:19 +01:00
#template {
margin-bottom: 15em;
}
2024-03-14 01:27:47 +01:00
}