-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
162 lines (131 loc) · 2.61 KB
/
Copy pathindex.css
File metadata and controls
162 lines (131 loc) · 2.61 KB
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
@charset "utf-8";
@font-face {
font-family: 'Oswald';
src: url("../Fonts/Oswald/Oswald[wght].ttf");
}
@font-face {
font-family: 'Dosis';
src: url("../Fonts/Dosis/Dosis-Regular.ttf");
}
/*
FED CA2 Bootstrap Website
Stylesheet for Layout of Jonathan's Personal Portfolio Home Page
Author: Jonathan Chong
Date: 26th July 2019
Filename: index.css
*/
/* Overarching Styles */
img {
width:100%;
}
/* Banner Styles */
.jumbotron {
position: relative;
display: block;
background: url(../Images/header_banner.jpg);
background-size: cover;
color: white;
height: 10em;
filter: brightness(80%);
border-radius: 0px;
margin: 0px -15px;
}
.jumbotron h1 {
font-size: 2em; /* 2em before change */
color:white;
font-family: 'Dosis', sans-serif;
text-shadow: 0 0 8px black;
}
/* Body Styles */
body {
background: url(../Images/background_cropped.jpg);
background-size: cover;
font-family: 'Oswald', sans-serif;
}
.mainBox {
background-color: rgba(255, 255, 255, 80%);
}
.introRow {
padding: 5px 20px 5px 20px;
}
/* Text Styles */
.description {
text-align: left;
font-size: 1.2em;
padding: 20px;
}
.descriptionH1 {
padding-bottom: 20px;
text-decoration: underline;
font-size: 2em;
}
.tilePrompt {
text-align: left;
font-size: 1.2em;
padding: 20px;
text-decoration: underline;
}
.introPhoto {
margin: 20px 0px;
float: left;
box-shadow: 0 0 8px black;
max-width: 230px;
max-height: 400px;
}
/* Tile Styles */
.tileLink {
padding: 0px 10px 0px 10px;
}
.tileLink img {
border-radius: 5px;
box-shadow: 0 0 8px black;
}
.caption {
padding-bottom: 20px;
text-align: center;
font-size: 1em;
}
/* Footer Styles */
.footer {
clear: left;
padding-left: 20px;
padding-top: 20px;
background: rgba(52,58,64, 85%);
color: black;
}
.footer2 {
background: rgba(52,58,64, 85%);
padding-bottom: 5px;
}
#facebook {
max-height: 45px;
max-width: 45px;
filter:opacity(60%);
}
#facebook:hover {
filter:opacity(100%);
}
#twitter {
padding-top: 5px;
max-height: 30px;
max-width: 35px;
filter:opacity(60%);
}
#twitter:hover {
filter: opacity(100%);
}
#instagram {
max-height: 30px;
max-width: 30px;
margin-left: 10px;
filter: opacity(60%);
}
#instagram:hover {
filter: opacity(100%);
}
.creditLink {
color: inherit;
}
.creditLink:hover {
color:inherit;
}