-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
112 lines (91 loc) · 1.29 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
* {
font-family: 'Inter', sans-serif;
color: #323232;
}
main {
width: 95vw;
}
body {
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
gap: 40px;
}
header, footer {
width: 100%;
background-color: #DDD0C8;
}
h1 {
transform: rotate(2deg);
}
h2 {
font-size: 200%;
}
a {
transition: background-color 0.5s ease;
}
a:hover {
background-color: lightcyan;
}
@keyframes myAnimation {
0% { transform: scale(1); }
50% { transform: scale(1.5); }
100% { transform: scale(1); }
}
h1 {
animation: myAnimation 2s ease-in-out infinite;
}
@media (max-width: 600px) {
* {
font-size: 16px;
}
}
@media (min-width: 601px) {
* {
font-size: 20px;
}
}
#resume-title {
margin-top: 0px;
margin-left: 1rem;
margin-bottom: 1rem;
}
#contacts {
margin-left: 1rem;
margin-bottom: 1rem;
}
#coursework {
margin-top: 0rem;
margin-left: 2rem;
}
#school {
margin: 0;
margin-left: 2rem;
padding: 0;
}
#contact-title {
margin-bottom: 0.5rem;
}
.emoticon {
font-size: 1em;
}
#header-text {
padding-left: 2rem;
}
#about {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 10vw;
}
#portrait {
max-width: 90vw;
width: 500px;
padding-bottom: 3vw;
}
#intro-text {
max-width: 50ch;
}