forked from PecanProject/PecanProject.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHomepageFeatures.module.css
More file actions
123 lines (119 loc) · 2.08 KB
/
HomepageFeatures.module.css
File metadata and controls
123 lines (119 loc) · 2.08 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
118
119
120
121
122
123
/* stylelint-disable docusaurus/copyright-header */
.featureContainer {
display: flex;
justify-content: space-around;
align-items: center;
padding: 2rem 0;
width: 100%;
}
.features {
display: flex;
flex-direction: column;
align-items: center;
padding: 2rem 2rem;
}
.featureSvg {
height: 300px;
width: 300px;
/* margin: 0 2rem; */
}
.headContainer {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
/* max-width: "10px"; */
}
.quote {
text-align: center;
font-size: 1.5rem;
font-style: italic;
}
.quote::before {
content: '"';
color: #25c2a0;
}
.quote::after {
content: '"';
color: #25c2a0;
}
.paragraph {
max-width: 50%;
margin: 0 1rem;
font-weight: 200;
/* background-color: var(--ifm-color-emphasis-200); */
padding: 10px;
}
.cardContainer {
max-width: 650px;
background-color: var(--ifm-color-emphasis-200);
border-radius: 10px;
padding: 2rem;
height: max-content;
margin: 0.25rem;
/* margin: 1rem 8rem; */
}
/* .cardContainer h1 {
font-size: larger;
} */
/* .cardContainer p {
font-size: 1rem;
} */
.foot {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.timeline {
margin: 5rem 0 0;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.imageContainer {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1rem;
}
.imageContainer .image {
width: 5rem;
height: 5rem;
margin: 0.254rem;
object-fit: contain;
}
@media (max-width: 600px) {
.imageContainer {
justify-content: center;
}
.imageContainer .image {
width: 3.5rem;
height: 3.5rem;
}
}
@media (max-width: 900px) {
.paragraph {
max-width: 60%;
}
.featureContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 4rem 0;
width: 100%;
}
/* .cardContainer{
margin: 1rem 4rem;
} */
}
@media only screen and (max-width: 600px) {
.paragraph {
max-width: 100%;
}
.featureContainer {
justify-content: center;
}
}