-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
169 lines (137 loc) · 2.49 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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
body {
background-image: url("cityBG.jpg");
background-size: 3500px;
display: grid;
font-family: sans-serif;
}
span {
color: red;
font-weight: bold;
}
/* navBar */
.navBar {
display: flex;
flex-direction: column;
background-color: white;
position: fixed;
place-items: center;
top: 0;
left: 0;
right: 0;
height: 75px;
}
.navBar a {
font-size: 24px;
z-index: -1;
text-decoration: none;
color: hotpink;
}
a:visited {
text-decoration: none;
color: purple;
}
a:hover {
text-decoration: none;
color: red;
}
.quote h1 {
padding-top: 60px;
text-align: center;
font-size: 36px;
color: black;
}
.quote h2 {
text-align: center;
font-size: 24px;
color: black;
padding-left: 500px;
}
/* grid */
.gridContainer {
padding-left: 240px;
position: relative;
margin: auto;
display: grid;
grid-template-columns: 200px 200px 200px 200px 200px 200px;
gap: 40px;
}
/* ROW 1 - Picture in first row */
.portraitBox {
grid-column-start: 1;
grid-column-end: 4;
display: inline-block;
border: 2px black;
border-radius: 12px;
background-color: white;
font-size: 20px;
}
.portraitBox img {
float: left;
padding-top: 20px;
padding-left: 40px;
padding-right: 50px;
border-radius: 20%;
}
.portraitBox h3 {
padding-left: 60%;
}
.portraitBox li {
padding-bottom: 10px;
}
/* Hobby list in row 1 */
.tableOutline {
grid-column-start: 4;
grid-column-end: 6;
display: inline-block;
border: 2px black;
border-radius: 12px;
background-color: white;
font-size: 20px;
}
.tableOutline h3 {
text-align: center;
}
.tableOutline li {
padding-bottom: 10px;
}
/* ROW 2 - Zebra List */
.zebraTable {
grid-row: 2;
grid-column-start: 1;
grid-column-end: 3;
background-color: white;
font-size: 20px;
text-align: center;
margin-left: 15px;
}
.zebraTable tr:nth-child(even) {
background-color: lightgrey;
}
.zebraTable th, td {
text-align: center;
padding-bottom: 10px;
}
.career {
grid-row: 2;
/* grid-row-end: ; */
grid-column-start: 3;
grid-column-end: 6;
border: 2px black;
border-radius: 12px;
background-color: white;
font-size: 20px;
}
.career header {
text-align: center;
padding-top: 10px;
font-size: 24px;
}
.career > div {
display: inline-flex;
}
.career > a {
padding-left: 40%;
}
.career mark {
background-color: lightpink;
}