-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
163 lines (142 loc) · 3.14 KB
/
style.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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
:root {
--mainBg: #111;
--projectBg: black;
--projectColor: silver;
--linkColor: slategray;
--projectWidth: 15rem;
--projectHeight: 17rem;
}
body {
margin: 0;
font-family: sans-serif;
}
header {
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: center;
background-color: var(--mainBg);
background-image:
radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px),
radial-gradient(rgba(255,255,255,.4), rgba(255,255,255,.1) 2px, transparent 30px),
linear-gradient(purple, var(--mainBg) 50%);
background-size: 550px 550px, 350px 350px, 250px 250px, 150px 150px;
background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
color: white;
}
header h1 {
font-family: 'Permanent Marker', cursive;
font-style: italic;
font-size: 10vw;
line-height: 1em;
position: relative;
margin: 0.5em 0;
transform: rotate(-5deg);
align-self: center;
color: white;
text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
header h1:after {
content: '_';
display: block;
position: absolute;
left: 1.2em;
top: 0.2em;
transform: scaleX(7);
transform-origin: left;
color: black;
}
header p {
font-size: 1.2em;
max-width: 35em;
line-height: 1.5em;
padding: 0 1em;
}
header a {
color: var(--linkColor);
}
main {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: flex-start;
align-content: flex-start;
background-color: var(--mainBg);
}
main:after {
content: '';
display: block;
height: 100vh;
}
.project {
width: var(--projectWidth);
height: var(--projectHeight);
margin: 1rem;
}
.content {
width: 100%;
min-height: var(--projectHeight);
max-height: var(--projectHeight);
background: var(--projectBg);
color: var(--projectColor);
overflow: hidden;
transition: all 0.5s;
padding: 0.25rem;
box-sizing: border-box;
box-shadow: 2px 2px 5px 0 rgba(0,0,0,0.5);
transform-origin: top left;
}
.project.transformLeft .content {
transform-origin: top right;
}
.project:hover .content {
transform: scale(1.2);
max-height: calc(100vh - 2rem);
box-shadow: 0px 0px 5px 2px rgba(255,255,255,0.5);
position: relative;
z-index: 100;
}
.title, .screenshot {
cursor: pointer;
}
.title {
order: 2;
font-weight: bold;
font-family: sans-serif;
background-color: black;
display: inline-block;
text-align: center;
white-space: nowrap;
flex-shrink: 0;
margin-bottom: 0.25rem;
}
.title.scrolling {
text-align: left;
align-self: flex-start;
animation: titleScroll 5s infinite alternate;
}
@keyframes titleScroll {
0% { transform: translateX(0) }
30% { transform: translateX(0) }
70% { transform: translateX(calc(-100% - 0.25rem + var(--projectWidth))) }
100% { transform: translateX(calc(-100% - 0.25rem + var(--projectWidth))) }
}
.screenshot {
order: 1;
width: 100%;
}
.screenshot img, .screenshot video {
width: 100%;
}
.description {
order: 3;
font-size: 0.9rem;
}
.description p:first-child {
margin: 0;
}
.description a {
color: var(--linkColor);
}