-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.css
More file actions
167 lines (167 loc) · 4.24 KB
/
Copy pathresources.css
File metadata and controls
167 lines (167 loc) · 4.24 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(120deg, #f3f7fa 67%, #eaf1ff 100%);
color: #253052;
min-height: 100vh;
}
.heroHeader {
background: #2277ee;
color: #fff;
text-align: center;
padding: 36px 0 24px 0;
margin-bottom: 0;
border-radius: 0 0 34px 34px;
}
.heroHeader h1 {
font-size: 2.35rem;
font-weight: 700;
margin-bottom: 11px;
letter-spacing: 1.2px;
}
.heroHeader p {
font-size: 1.13rem;
opacity: 0.92;
margin: 0;
}
.mainWrap {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 7vw 44px 7vw;
}
.resourceCard {
background: #fff;
border-radius: 18px;
box-shadow: 0 4px 24px #2277ee16;
max-width: 650px;
width: 100%;
margin: 38px 0 0 0;
padding: 36px 36px 31px 36px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.resourceIcon {
font-size: 2.5rem;
color: #2277ee;
margin-bottom: 16px;
animation: pulse 2s infinite;
display: inline-block;
}
@keyframes pulse {
0%,100% { transform: scale(1);}
50% { transform: scale(1.14);}
}
.resourceCard h2 {
font-size: 1.35rem;
color: #2277ee;
font-weight: 700;
margin: 0 0 13px 0;
}
.resourceIntro {
font-size: 1.07rem;
color: #384a6a;
margin: 0 0 20px 0;
line-height: 1.55;
}
.featureList {
background: #eaf1ff;
border-radius: 9px;
box-shadow: 0 1px 8px #2277ee0c;
padding: 14px 21px 13px 21px;
color: #253052;
width: 100%;
text-align: left;
font-size: 1rem;
margin-bottom: 16px;
}
.featureList strong {
color: #2277ee;
display: block;
margin-bottom: 4px;
}
.featureList ul {
margin: 10px 0 0 13px;
padding-left: 0;
color: #23436a;
font-size: 0.99rem;
}
.podcastList {
width: 100%;
text-align: left;
margin-bottom: 18px;
}
.podcastList strong {
color: #184c9e;
display: block;
margin-bottom: 6px;
}
.podcastList ul {
margin: 9px 0 0 13px;
padding-left: 0;
color: #23436a;
font-size: 0.97rem;
}
.expertTips {
width: 100%;
text-align: left;
background: #f4fafd;
border-left: 4px solid #67a3ff;
border-radius: 8px;
box-shadow: 0 1px 8px #2277ee09;
padding: 13px 19px 11px 19px;
margin: 14px 0 19px 0;
color: #253052;
font-size: 1rem;
}
.expertTips strong {
color: #184c9e;
margin-bottom: 5px;
display: block;
}
.resourceBtn {
background: linear-gradient(90deg, #2277ee 65%, #67a3ff 100%);
color: #fff;
border: none;
padding: 12px 32px;
font-size: 1.11rem;
font-family: 'Poppins', sans-serif;
border-radius: 8px;
box-shadow: 0 2px 10px #2277ee25;
cursor: pointer;
font-weight: 700;
transition: background .12s, transform .11s;
margin-top: 8px;
}
.resourceBtn:hover {
background: linear-gradient(90deg, #184c9e 69%, #67a3ff 100%);
transform: scale(1.04);
}
#resourceMsg {
display: none;
background: #2277ee;
color: #fff;
font-size: 0.99rem;
padding: 8px 16px;
border-radius: 7px;
margin-top: 12px;
min-width: 120px;
text-align: center;
box-shadow: 0 2px 8px #2277ee16;
opacity: 0.97;
}
@media (max-width:650px) {
.resourceCard { padding: 16px 4vw 17px 4vw;}
.mainWrap { padding: 0 0 28px 0;}
.heroHeader h1 { font-size: 1.35rem;}
.resourceCard h2 { font-size: 1.14rem;}
.resourceIcon { font-size: 1.28rem;}
.resourceBtn { padding: 9px 5vw; font-size: 0.99rem;}
}
@media (max-width:400px) {
.resourceCard { padding: 7px 2vw 9px 2vw;}
.resourceBtn { padding: 7px 2vw;}
.featureList, .expertTips, .podcastList { padding: 8px 7px 6px 12px;}
}