-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.module.css
More file actions
136 lines (117 loc) · 2.13 KB
/
styles.module.css
File metadata and controls
136 lines (117 loc) · 2.13 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
124
125
126
127
128
129
130
131
132
133
134
135
136
.activity {
background: var(--ifm-background-lighter);
border-radius: 25px;
padding: 2rem;
display: flex;
flex-direction: column;
gap: 1.5rem;
max-width: 1000px;
margin: 0 auto;
}
.activity_panel {
background: var(--ifm-card-background-color);
border-radius: 18px;
padding: 1.25rem 1.5rem;
border: 1px solid rgba(0, 0, 0, 0.08);
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.panelHeader {
display: flex;
align-items: baseline;
gap: 0.5rem;
}
.activity_panel h4 {
margin: 0;
font-size: 0.8rem;
font-weight: 600;
color: var(--ifm-color-link-grey);
}
.bar_row {
display: flex;
align-items: center;
gap: 1rem;
font-size: 0.95rem;
}
.bar_row span:first-of-type {
width: 35%;
min-width: 120px;
font-weight: 600;
}
.bar_track {
flex: 1;
height: 12px;
background: rgba(0, 0, 0, 0.05);
border-radius: 999px;
overflow: hidden;
}
.bar_fill {
height: 100%;
background: linear-gradient(
90deg,
var(--ifm-color-primary-darkest),
var(--ifm-color-primary-lightest)
);
border-radius: inherit;
transition: width 250ms ease;
}
.activity_footer {
text-align: center;
font-size: 0.9rem;
margin-top: 0.5rem;
}
@media screen and (max-width: 700px) {
.activity {
padding: 1.25rem;
}
.bar_row span:first-of-type {
min-width: 90px;
}
}
.about_description {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
width: 100%;
margin-bottom: 1rem;
}
.about_description h1 {
font-weight: 700;
font-size: 32px;
line-height: 30px;
}
.about_description p {
font-size: 18px;
font-weight: 500;
text-align: justify;
padding: 10px;
}
@media screen and (max-width: 1050px) {
.about_description {
margin-bottom: 1rem;
}
}
@media screen and (max-width: 650px) {
.about_description {
padding: 1rem;
}
.about_description h1 {
font-size: 28px;
line-height: 26px;
}
}
@media screen and (max-width: 490px) {
.section_padding {
padding: 1rem;
}
.about_description h1 {
font-size: 24px;
line-height: 22px;
}
.about_description p {
font-size: 16px;
}
}