Skip to content

Commit cf4ef5f

Browse files
committed
design and content update
1 parent 7fdbf71 commit cf4ef5f

20 files changed

+56
-383
lines changed

about.html

Lines changed: 0 additions & 102 deletions
This file was deleted.

assets/bb.jpg

6.1 MB
Loading

assets/code.jpg

43 KB
Loading

assets/me.jpg

2.11 MB
Loading

assets/mlh.jpg

1.02 MB
Loading

assets/painting.jpg

-305 KB
Binary file not shown.

assets/purchase.jpg

-60.9 KB
Binary file not shown.

assets/stars.jpg

-78.6 KB
Binary file not shown.

css/about.css

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
background: tomato;
88
}
99

10+
1011
/* entire container, keeps perspective */
1112
.flip-container {
1213
perspective: 1000px;
@@ -87,12 +88,13 @@
8788
}
8889

8990
.backdrop {
90-
display: flex;
91-
flex-direction: row;
92-
flex-wrap: wrap;
93-
justify-content: space-around;
94-
align-items: center;
95-
font-family: 'Mr Dafoe', cursive;
91+
margin: 1em;
92+
display: flex;
93+
flex-direction: row;
94+
flex-wrap: wrap;
95+
justify-content: space-around;
96+
align-items: center;
97+
font-family: 'Mr Dafoe', cursive;
9698
}
9799

98100
.backdrop a {
@@ -188,5 +190,8 @@
188190
text-align: left;
189191
font-size: 1.5vh;
190192
font-family: 'Kalam', cursive;
193+
}
191194

195+
.index-card:link, .index-card:visited, .index-card:hover, .index-card:active {
196+
color: #1A1110;
192197
}

css/exper.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
2+
.tossing{
3+
animation-name: tossing;
4+
-webkit-animation-name: tossing;
5+
6+
animation-duration: 2.5s;
7+
-webkit-animation-duration: 2.5s;
8+
9+
animation-iteration-count: infinite;
10+
-webkit-animation-iteration-count: infinite;
11+
}
12+
13+
@keyframes tossing {
14+
0% {
15+
transform: rotate(-30deg);
16+
}
17+
50% {
18+
transform: rotate(30deg);
19+
}
20+
100% {
21+
transform: rotate(-30deg);
22+
}
23+
}
24+
25+
@-webkit-keyframes tossing {
26+
0% {
27+
-webkit-transform: rotate(-30deg);
28+
}
29+
50% {
30+
-webkit-transform: rotate(30deg);
31+
}
32+
100% {
33+
-webkit-transform: rotate(-30deg);
34+
}
35+
}

0 commit comments

Comments
 (0)