-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (60 loc) · 1.35 KB
/
styles.css
File metadata and controls
73 lines (60 loc) · 1.35 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
.b-example-divider {
width: 100%;
height: 3rem;
background-color: rgba(0, 0, 0, .1);
border: solid rgba(0, 0, 0, .15);
border-width: 1px 0;
box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
}
.small-icon {
width: 6.5rem;
height: 4.5rem;
transition: transform 0.3s, box-shadow 0.3s;
}
.small-icon:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.education-entry {
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
.university-logo {
max-width: 100%;
height: auto;
margin-bottom: 10px;
}
.card {
transition: transform 0.3s, box-shadow 0.3s;
height: 30rem;
}
.card:hover {
transform: scale(1.05);
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
cursor: pointer;
}
.card-body {
display: flex;
flex-direction: column;
justify-content: space-between;
}
.card-title {
font-size: 1.25rem;
}
.card-subtitle {
font-size: 1rem;
}
.card-text {
flex-grow: 1;
}
.btn {
margin-top: auto;
}
.truncate-height {
max-height: 100px; /* Set the maximum height */
overflow: hidden; /* Hide overflowing content */
text-overflow: ellipsis; /* Add ellipsis for indication of truncated text */
white-space: nowrap; /* Prevent wrapping of text */
}