-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhrList.css
More file actions
135 lines (134 loc) · 3.43 KB
/
Copy pathhrList.css
File metadata and controls
135 lines (134 loc) · 3.43 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
body {
margin: 0;
font-family: 'Poppins', sans-serif;
background: linear-gradient(120deg, #f3f7fa 77%, #eaf1ff 100%);
color: #253052;
min-height: 100vh;
}
.heroHeaderHR {
background: #2277ee;
color: #fff;
text-align: center;
padding: 38px 0 26px 0;
border-radius: 0 0 32px 32px;
margin-bottom: 0;
}
.heroHeaderHR h1 {
font-size: 2.3rem;
font-weight: 700;
margin-bottom: 12px;
letter-spacing: 1.1px;
}
.heroHeaderHR p {
font-size: 1.15rem;
opacity: 0.92;
margin: 0;
}
.mainWrapHR {
display: flex;
flex-direction: column;
align-items: center;
padding: 0 7vw 44px 7vw;
}
.hrSectionCard {
background: #fff;
border-radius: 20px;
box-shadow: 0 4px 24px #2277ee16;
max-width: 600px;
width: 100%;
margin: 44px 0 0 0;
padding: 37px 38px 31px 38px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.hrIcon {
font-size: 2.5rem;
color: #2277ee;
margin-bottom: 15px;
animation: pulse 2s infinite;
display: inline-block;
}
@keyframes pulse {
0%, 100% { transform: scale(1);}
50% { transform: scale(1.13);}
}
.hrSectionCard h2 {
font-size: 1.38rem;
color: #2277ee;
font-weight: 700;
margin: 0 0 13px 0;
}
.hrIntro {
font-size: 1.09rem;
color: #384a6a;
margin: 0 0 19px 0;
line-height: 1.56;
}
.statsBox {
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: 18px;
}
.statsBox strong {
color: #2277ee;
display: block;
margin-bottom: 3px;
}
.statsList {
margin: 9px 0 0 13px;
padding-left: 0;
color: #23436a;
font-size: 0.97rem;
}
.hrBtn {
background: linear-gradient(90deg, #2277ee 65%, #67a3ff 100%);
color: #fff;
border: none;
padding: 13px 32px;
font-size: 1.11rem;
font-family: 'Poppins', sans-serif;
border-radius: 8px;
box-shadow: 0 2px 10px #2277ee19;
cursor: pointer;
font-weight: 700;
transition: background .12s, transform .11s;
margin-top: 10px;
}
.hrBtn:hover {
background: linear-gradient(90deg, #184c9e 72%, #67a3ff 100%);
transform: scale(1.045);
}
#hrMsg {
display: none;
background: #2277ee;
color: #fff;
font-size: 0.99rem;
padding: 8px 15px;
border-radius: 7px;
margin-top: 13px;
min-width: 120px;
text-align: center;
box-shadow: 0 2px 8px #2277ee16;
opacity: 0.98;
}
@media (max-width:700px) {
.hrSectionCard { padding: 16px 5vw 14px 5vw; }
.mainWrapHR { padding: 0 0 28px 0; }
.heroHeaderHR h1 { font-size: 1.33rem;}
.hrSectionCard h2 { font-size: 1.11rem;}
.hrBtn { padding: 9px 4vw; font-size: 0.99rem;}
.hrIcon { font-size: 1.4rem;}
}
@media (max-width:400px) {
.hrSectionCard { padding: 8px 2vw 9px 2vw;}
.hrBtn { padding: 7px 2vw;}
.statsBox { padding: 8px 7px 6px 12px;}
}