-
Notifications
You must be signed in to change notification settings - Fork 0
/
crstyle.css
62 lines (54 loc) · 1.3 KB
/
crstyle.css
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
* {
margin: 0;
padding: 0;
font-family: "Plus Jakarta Sans", sans-serif;
}
.header{
min-height: 70vh;
}
.header,
.cta,
.sub-header {
background-image: url('tempbg.png');
background-position: center;
background-size: cover;
}
.sub-header,
.light-mode .sub-header {
background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
url('tempbg.png');
}
.dark-mode .sub-header {
background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(4, 9, 30, 0.7)),
url('tempbg.png');
}
.career-section {
display: flex;
justify-content: center;
align-items: center;
height: 40vh;
}
.big-card {
width: 300px;
height: 300px;
background-color: rgba(173, 138, 56, 0.5); /* semi-transparent color */
margin: 0 20px;
display: flex;
justify-content: center;
align-items: center;
border-radius: 20px;
cursor: pointer;
transition: background-color 0.3s ease; /* smooth transition on hover */
}
.big-card:hover {
background-color: rgba(173, 138, 56, 0.8); /* darken on hover */
}
.big-card h2 {
font-size: 24px;
color: #fff;
}
.card-content {
display: flex;
flex-direction: column;
align-items: center;
}