-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
153 lines (127 loc) · 2.09 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
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
h1 {
font-size: 30px;
}
h2 {
font-size: 20px;
}
body {
text-align: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.title {
text-align: center;
padding-top: 30px;
padding-bottom: 30px;
background-color: #ADDFFF;
}
.navbarList {
list-style-type: none;
margin: 0;
padding: 0px;
display: inline-block;
}
.navbarList li {
float: left;
}
.navbarList li a {
display: block;
padding: 14px 16px;
text-decoration: none;
color: black;
font-weight: bold;
}
.aboutMe {
padding: 25px;
max-width: 30%;
margin: 0 auto;
}
.aboutMe p {
padding: 25px;
}
.aboutMe img {
border-radius: 50%;
max-width: 15%;
min-width: 100px;
padding: 25px;
}
.projects{
background-color: #ADDFFF;
padding: 20px;
max-width: 30%;
margin: 0 auto;
padding: 25px;
}
.projects ul {
display: inline-block;
}
.projects li {
text-align: left;
}
.projects li a{
color: black;
}
.skills {
padding: 30px;
margin: 0 auto;
display: inline;
}
.skills #skillImages {
height: 125px;
padding-bottom: 100px;
align-items:flex-start;
display: block;
}
.skills img {
padding: 30px;
max-width: 4%;
min-width: 50px;
}
.skills img:hover {
padding: 30px;
max-width: 100px;
min-width: 50px;
transition-duration: 0.5s;
}
.courses{
background-color: #ADDFFF;
padding: 20px;
max-width: 30%;
margin: 0 auto;
display: block;
}
.courses ul {
display: inline-block;
}
.courses li {
text-align: left;
}
.contactImages {
transform: translate(-50%, -50%);
top: 50%;
position: absolute;
left: 50%;
}
.contactImages img {
padding: 30px;
max-width: 4%;
min-width: 50px;
}
.scroll-up {
float: right;
padding-right: 5%;
padding-bottom: 3%;
cursor: pointer;
}
.up-arrow {
width: 3rem;
height: 3rem;
}
footer {
padding: 50px;
text-align: center;
}
@media screen and (max-width: 1000px) {
.courses, .projects, .aboutMe {
max-width: 80%; /* The width is 100%, when the viewport is 800px or smaller */
}
}