-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
92 lines (88 loc) · 1.47 KB
/
stylesheet.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
@import url("https://fonts.googleapis.com/css?family=Be+Vietnam|Mansalva&display=swap");
body {
font-size: 1em;
background-color: #001c2a;
margin: 0;
}
.container #intro h1 {
font-size: 3rem;
font-family: "Mansalva", cursive;
}
.container #intro p {
font-family: "Be Vietnam", sans-serif;
}
.container #intro img {
width: 49%;
border-radius: 1rem;
}
.container #intro #HCM {
transform: rotate(90deg);
}
.container #intro #familyPic {
float: right;
}
.container #resume {
display: none;
}
.container .card-content {
background-color: yellow;
border-radius: 3rem;
margin: 2rem auto 0;
max-width: 46rem;
padding: 2rem;
overflow: hidden;
animation-duration: 4s;
animation-fill-mode: forwards;
height: 43rem;
}
header {
margin: 2rem auto 0;
height: 5rem;
max-width: 50rem;
}
header button {
float: right;
color: #43fffd;
background-color: #25426f;
padding: 0.7rem;
font-size: 1.2rem;
text-transform: uppercase;
border: none;
border-radius: 0.3rem;
margin: 1rem 0 1rem 3rem;
}
header button:hover {
transform: scale(1.3, 1.3);
}
header img {
max-height: 5rem;
border-radius: 3rem;
}
@keyframes removeCard {
0% {
height: 100%;
}
50% {
height: 40rem;
padding: 2rem;
}
100% {
height: 0;
padding: 0;
}
}
@keyframes addCard {
0% {
display: block;
height: 0;
padding: 0;
}
50% {
height: 40rem;
padding: 2rem;
}
100% {
height: 100%;
}
}
/*# sourceMappingURL=stylesheet.css.map */