-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtechnical.css
More file actions
108 lines (92 loc) · 2 KB
/
technical.css
File metadata and controls
108 lines (92 loc) · 2 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
/* ===================================
Technical Page Specific Styles
=================================== */
.tech-section {
padding: 3rem 0;
border-bottom: 1px solid var(--border-light);
}
.tech-section:last-child {
border-bottom: none;
}
.tech-highlight {
background-color: var(--bg-light);
border-radius: 10px;
padding: 2rem;
margin: 2rem 0;
border-left: 5px solid var(--primary-purple);
}
.tech-highlight h3 {
margin-top: 0;
color: var(--primary-purple);
}
.tech-code {
background-color: #f5f5f5;
padding: 1rem;
border-radius: 5px;
font-family: monospace;
overflow-x: auto;
margin: 1rem 0;
}
.tech-note {
background-color: var(--bg-highlight);
border-radius: 10px;
padding: 1.5rem;
margin: 1.5rem 0;
display: flex;
align-items: flex-start;
}
.note-icon {
font-size: 2rem;
margin-right: 1rem;
color: var(--primary-blue);
}
.tech-note p {
margin: 0;
}
/* Tech page uses common .grid, .card, and .icon styles */
.tech-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 2rem;
margin-top: 2rem;
}
.tech-card {
background: white;
border-radius: 10px;
padding: 2rem;
box-shadow: 0 5px 15px rgba(0,0,0,0.05);
transition: transform 0.3s ease;
}
.tech-card:hover {
transform: translateY(-5px);
}
.tech-card h3 {
margin-top: 0;
color: var(--text-dark);
}
.tech-icon {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--primary-purple);
}
.tech-grid.expanded {
grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}
.subtle-divider {
border: none;
border-top: 1px solid #e0e0e0;
width: 60%;
margin: 2rem auto;
}
code {
display: inline;
padding: 0.2em 0.4em;
background-color: #f5f5f5;
border: 1px solid #e0e0e0;
border-radius: 3px;
font-family: 'Courier New', Consolas, monospace;
font-size: 0.9em;
color: #333;
white-space: pre-wrap;
word-break: break-word;
}