-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
119 lines (106 loc) · 1.96 KB
/
Copy pathstyles.css
File metadata and controls
119 lines (106 loc) · 1.96 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
.top {
display: grid;
grid-gap: 86px;
border-radius: 8px;
margin-right: 148px;
}
.main {
display: grid;
background: #FFFFFF;
margin-right: 148px;
}
.verify {
grid-column-start: 2;
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 24px;
/* or 100% */
display: flex;
align-items: center;
color: #000000;
}
.employer-list-btn {
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 12px;
line-height: 24px;
color: #B5B5B5;
grid-column-end: 11;
border-radius: 5px;
}
.card_box {
display: grid;
grid-column-gap: 10px;
grid-template-columns: 1fr 1fr 1fr;
grid-column-start: 3;
grid-gap: 10px;
}
.card {
width: 365px;
height: 399px;
background: #FFFFFF;
box-shadow: 0px 4px 12px rgba(167, 167, 167, 0.25);
}
.card {
font-family: Poppins;
width: 320px;
height: 376px;
background: #FFFFFF;
box-shadow: 0px 4px 12px rgba(167, 167, 167, 0.25);
}
.logo {
width: 80px;
height: 80px;
background: #C4C4C4;
align-self: center;
margin-top: 24px;
}
.card-title {
text-align: center;
font-family: Poppins;
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 24px;
color: #000000;
}
.card-text {
font-family: Poppins;
font-style: normal;
font-weight: normal;
font-size: 16px;
line-height: 24px;
text-align: center;
color: #343434;
}
.btn-info:hover {
background-color: white;
color: #C4C4C4;
}
.btn-info {
background-color: #FFFFFF;
color: #C4C4C4;
border: none;
padding-right: 5px;
}
.btn-primary {
width: 120px;
height: 37px;
background: #00AEFF;
border-radius: 5px;
}
@media (max-width: 500px) {
.card_box {
display: flex;
justify-content: center;
}
.top {
display: flex;
}
.employer-list-btn {
left: 180px;
}
}