blob: 3e5ccc0ffb67e96e320f87d1ed7a4fa7fcff0e95 (
plain)
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
|
.content-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
margin-top: 30px;
}
.left-column { text-align: right; }
.right-column { text-align: left; }
.projects-category {
margin-bottom: 80px;
}
.project-item {
margin-bottom: 100px;
}
.project-item h3 {
margin-top: 0;
font-size: 1.5rem;
}
.tech-stack {
margin: 10px 0 20px 0;
}
.tag {
display: inline-block;
background-color: rgba(0,0,0,0.05);
padding: 2px 8px;
border-radius: 4px;
font-size: 0.75rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
margin-right: 5px;
border: 1px solid var(--border-color);
}
.project-links {
margin-top: 20px;
font-size: 0.9rem;
}
.project-img, .project-placeholder {
width: 100%;
border: 1px solid var(--border-color);
border-radius: 8px;
display: block;
}
.project-placeholder {
height: 200px;
background-color: #e0e0dc;
display: flex;
align-items: center;
justify-content: center;
color: #888;
font-size: 0.9rem;
}
.simple-project-list {
margin-top: 30px;
}
.simple-project-list li {
margin-bottom: 1.5rem;
}
.tech-stack-inline {
font-size: 0.85rem;
opacity: 0.6;
margin: 0 10px;
}
@media (max-width: 768px) {
.content-grid {
grid-template-columns: 1fr;
gap: 40px;
}
.left-column, .right-column { text-align: center; }
}
|