-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (97 loc) · 1.72 KB
/
styles.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
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
109
110
111
112
113
114
115
116
117
118
@font-face {
font-family: 'Inter';
src: url('../fonts/InterVariable.ttf') format('truetype');
font-weight: 100 900;
font-style: normal;
}
:root {
--background-color: #F7F6F6;
--text-color: #3C3633;
--secondary-text-color: #70615C;
}
.header {
text-decoration: none;
color: var(--text-color)
}
.footer {
margin-top: 5rem;
margin-bottom: 2rem;
}
body {
font-family: 'Inter', 'sans-serif';
font-size: 15px;
line-height: 1.42;
margin: 1rem;
background-color: var(--background-color);
color: var(--text-color);
}
.container {
display: block;
margin: 5% auto 0;
max-width: 550px;
}
nav {
align-items: center;
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
a {
color: var(--secondary-text-color)
}
a:hover {
color: var(--text-color)
}
.projects-container {
display: flex;
flex-direction: column;
gap: 1rem;
}
.project-header {
padding-bottom: 0.5rem;
}
.project-pair {
text-decoration: none;
display: block;
color: inherit;
}
.project-row {
display: flex;
align-items: flex-start;
gap: 1rem;
flex-wrap: wrap;
}
.project-title {
display: flex;
align-items: center;
gap: 0.25rem;
min-width: 120px;
}
.arrow-icon {
display: inline;
color: #a3a3a3;
}
.project-content {
flex: 1;
min-width: 200px;
}
.project-description {
margin: 0;
}
.project-aside {
color: #666;
font-size: 0.875rem;
margin-top: 0.25rem;
}
@media (max-width: 480px) {
.project-row {
flex-direction: column;
gap: 0.5rem;
}
.project-title {
min-width: auto;
}
.project-content {
min-width: auto;
}
}