-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
40 lines (34 loc) · 676 Bytes
/
styles.css
File metadata and controls
40 lines (34 loc) · 676 Bytes
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
/* css styles */
.quarto-title > h1.title {
opacity: 0 !important;
font-size: 0px !important;
}
.big {
font-size: 2em !important;
}
/* Portfolio preview styling */
.portfolio-preview {
margin: 1.5rem 0;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}
.portfolio-preview:hover {
box-shadow: 0 4px 16px rgba(0,0,0,0.15);
transform: translateY(-2px);
}
.portfolio-preview a {
display: block;
line-height: 0;
}
.portfolio-preview img {
width: 100%;
height: auto;
display: block;
border-radius: 8px;
transition: opacity 0.3s ease;
}
.portfolio-preview a:hover img {
opacity: 0.9;
}