-
-
Notifications
You must be signed in to change notification settings - Fork 280
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: Add global Testcontainers header (#967)
Co-authored-by: Andre Hofmeister <9199345+HofmeisterAn@users.noreply.github.com>
- Loading branch information
1 parent
23ef5a2
commit 99ff005
Showing
11 changed files
with
960 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,124 +1,128 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Rubik'); | ||
|
||
h1, | ||
h2, | ||
h3, | ||
h4, | ||
h5, | ||
h6 | ||
{ | ||
h1, h2, h3, h4, h5, h6 { | ||
font-family: 'Rubik', sans-serif; | ||
} | ||
|
||
[data-md-color-scheme="testcontainers"] | ||
{ | ||
--md-primary-fg-color: #291a3f; | ||
--md-accent-fg-color: #291a3f; | ||
--md-typeset-a-color: #0c94aa; | ||
[data-md-color-scheme="testcontainers"] { | ||
--md-primary-fg-color: #00bac2; | ||
--md-accent-fg-color: #361E5B; | ||
--md-typeset-a-color: #0C94AA; | ||
--md-primary-fg-color--dark: #291A3F; | ||
--md-default-fg-color--lightest: #F2F4FE; | ||
--md-footer-fg-color: #361E5B; | ||
--md-footer-fg-color--light: #746C8F; | ||
--md-footer-fg-color--lighter: #C3BEDE; | ||
--md-footer-bg-color: #F7F9FD; | ||
--md-footer-bg-color--dark: #F7F9FD; | ||
} | ||
|
||
.card-grid { | ||
display: grid; | ||
gap: 10px; | ||
} | ||
|
||
.tc-version { | ||
font-size: 1.1em; | ||
text-align: center; | ||
margin: 0; | ||
} | ||
|
||
@media (min-width: 680px) { | ||
.card-grid { | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
} | ||
|
||
body .card-grid-item { | ||
display: flex; | ||
align-items: center; | ||
gap: 20px; | ||
border: 1px solid #c3bede; | ||
border: 1px solid #C3BEDE; | ||
border-radius: 6px; | ||
padding: 16px; | ||
font-weight: 600; | ||
color: #9991b5; | ||
background: #f2f4fe; | ||
color: #9991B5; | ||
background: #F2F4FE; | ||
} | ||
|
||
body .card-grid-item:hover, | ||
body .card-grid-item:focus { | ||
color: #9991b5; | ||
} | ||
|
||
.card-grid { | ||
display: grid; | ||
gap: 10px; | ||
} | ||
|
||
@media (min-width: 680px) { | ||
.card-grid { | ||
grid-template-columns: repeat(3, 1fr); | ||
} | ||
color: #9991B5; | ||
} | ||
|
||
.card-grid-item[href] { | ||
color: var(--md-primary-fg-color); | ||
color: var(--md-primary-fg-color--dark); | ||
background: transparent; | ||
} | ||
|
||
.card-grid-item[href]:hover, | ||
.card-grid-item[href]:focus { | ||
color: var(--md-primary-fg-color); | ||
background: #f2f4fe; | ||
background: #F2F4FE; | ||
color: var(--md-primary-fg-color--dark); | ||
} | ||
|
||
@media (min-width: 1220px) { | ||
.community-callout-wrapper { | ||
padding: 40px 0 0; | ||
} | ||
|
||
@media (min-width: 1600px) { | ||
.community-callout h2 { | ||
font-size: 1.15em; | ||
} | ||
} | ||
.community-callout-wrapper { | ||
padding: 30px 10px 0 10px; | ||
} | ||
|
||
.community-callout { | ||
color: #F2F4FE; | ||
background: linear-gradient(10.88deg, rgba(102, 56, 242, 0.4) 9.56%, #6638F2 100%), #291A3F; | ||
border-radius: 10px; | ||
box-shadow: 0px 20px 45px rgba(#9991B5, 0.75); | ||
color: #F2F4FE; | ||
border-radius: 10px; | ||
padding: 20px; | ||
} | ||
|
||
.community-callout a { | ||
transition: opacity 0.2s ease; | ||
.community-callout h2 { | ||
font-size: 1.15em; | ||
margin: 0 0 20px 0; | ||
color: #F2F4FE; | ||
text-align: center; | ||
} | ||
|
||
.community-callout a img { | ||
height: 1.75em; | ||
.community-callout ul { | ||
list-style: none; | ||
padding: 0; | ||
display: flex; | ||
justify-content: space-between; | ||
gap: 10px; | ||
margin-top: 20px; | ||
margin-bottom: 0; | ||
} | ||
|
||
.community-callout a img { | ||
height: 2em; | ||
.community-callout a { | ||
transition: opacity 0.2s ease; | ||
} | ||
|
||
.community-callout a:hover { | ||
opacity: 0.5; | ||
} | ||
|
||
.community-callout a img { | ||
aspect-ratio: 1; | ||
height: 1.75em; | ||
width: auto; | ||
aspect-ratio: 1; | ||
} | ||
|
||
.community-callout a:hover { | ||
opacity: 0.5; | ||
} | ||
@media (min-width: 1220px) { | ||
.community-callout-wrapper { | ||
padding: 40px 0 0; | ||
} | ||
|
||
.community-callout h2 { | ||
font-size: 1.25em; | ||
} | ||
.community-callout h2 { | ||
font-size: 1.25em; | ||
} | ||
|
||
.community-callout h2 { | ||
color: #F2F4FE; | ||
font-size: 1.15em; | ||
margin: 0 0 20px 0; | ||
text-align: center; | ||
.community-callout a img { | ||
height: 2em; | ||
} | ||
} | ||
|
||
.community-callout ul { | ||
display: flex; | ||
gap: 10px; | ||
justify-content: space-between; | ||
list-style: none; | ||
margin-bottom: 0; | ||
margin-top: 20px; | ||
padding: 0; | ||
} | ||
@media (min-width: 1600px) { | ||
.community-callout h2 { | ||
font-size: 1.15em; | ||
} | ||
|
||
.community-callout-wrapper { | ||
padding: 30px 10px 0 10px; | ||
.community-callout a img { | ||
height: 1.75em; | ||
} | ||
} |
Oops, something went wrong.