forked from testcontainers/testcontainers-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathextra.css
More file actions
117 lines (97 loc) · 2.09 KB
/
Copy pathextra.css
File metadata and controls
117 lines (97 loc) · 2.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
@import url('https://fonts.googleapis.com/css?family=Rubik');
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;
}
.card-grid {
display: grid;
gap: 10px;
}
@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-radius: 6px;
padding: 16px;
font-weight: 600;
color: #9991B5;
background: #F2F4FE;
}
body .card-grid-item:hover,
body .card-grid-item:focus {
color: #9991B5;
}
.card-grid-item[href] {
color: var(--md-primary-fg-color);
background: transparent;
}
.card-grid-item[href]:hover,
.card-grid-item[href]:focus {
background: #F2F4FE;
color: var(--md-primary-fg-color);
}
.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;
box-shadow: 0px 20px 45px rgba(#9991B5, 0.75);
border-radius: 10px;
padding: 20px;
}
.community-callout h2 {
font-size: 1.15em;
margin: 0 0 20px 0;
color: #F2F4FE;
text-align: center;
}
.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 {
transition: opacity 0.2s ease;
}
.community-callout a:hover {
opacity: 0.5;
}
.community-callout a img {
height: 1.75em;
width: auto;
aspect-ratio: 1;
}
@media (min-width: 1220px) {
.community-callout-wrapper {
padding: 40px 0 0;
}
.community-callout h2 {
font-size: 1.25em;
}
.community-callout a img {
height: 2em;
}
}
@media (min-width: 1600px) {
.community-callout h2 {
font-size: 1.15em;
}
.community-callout a img {
height: 1.75em;
}
}