This commit is contained in:
TroogS
2022-04-24 17:21:30 +00:00
parent 505f3dbc4a
commit f82903be4c
26 changed files with 684 additions and 114 deletions

View File

@@ -6016,6 +6016,14 @@ body.hero.scroll .nav a li {
display: none;
}
a {
color: red;
}
a:hover {
color: #000;
}
footer {
background-color: #fff;
border-top: 1px solid #d8d8d8;
@@ -6299,6 +6307,46 @@ body.sidebar div.hamburger span:nth-child(3) {
transform: translateY(-9px) rotate(-45deg);
}
.question-container {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1em;
}
@media only screen and (max-width: 1200px) {
.question-container {
grid-template-columns: auto;
}
}
.question-container .question {
list-style-type: none;
padding: 10px 15px;
margin: 0;
border: 1px solid #bdbdbd;
}
.question-container .question li:first-child {
padding-bottom: 5px;
}
.question-container .question li:first-child h2 {
margin: 0;
}
.map {
border: 1px solid #b9b9b9;
width: 100%;
height: 350px;
}
.two-column-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-gap: 1em;
}
@media only screen and (max-width: 1200px) {
.two-column-grid {
grid-template-columns: auto;
}
}
.tg-container {
height: 100%;
display: flex;