2020-12-23 13:28:04 +00:00
|
|
|
@import url("reset.css");
|
|
|
|
|
2020-12-17 16:56:25 +00:00
|
|
|
@font-face{
|
|
|
|
font-family:"roboto";
|
|
|
|
font-weight: 100;
|
2020-12-31 15:49:54 +00:00
|
|
|
src: url("../Fonts/Roboto/RobotoMono-VariableFont_wght.ttf")
|
2020-12-17 16:56:25 +00:00
|
|
|
}
|
|
|
|
|
2020-12-16 22:00:11 +00:00
|
|
|
body{
|
2020-12-31 13:46:26 +00:00
|
|
|
color: #ffd256;
|
|
|
|
font-family: "roboto";
|
2020-12-30 16:58:10 +00:00
|
|
|
background-color: #221A0F;
|
2020-12-31 15:49:54 +00:00
|
|
|
background-image: url("../Images/BackGroundTestNoGlow.png");
|
2020-12-30 13:55:25 +00:00
|
|
|
background-position: bottom;
|
2020-12-29 21:25:29 +00:00
|
|
|
|
2020-12-16 22:00:11 +00:00
|
|
|
}
|
|
|
|
|
2020-12-17 16:56:25 +00:00
|
|
|
|
2020-12-27 13:21:53 +00:00
|
|
|
h1, h2, h3{
|
2020-12-17 22:00:58 +00:00
|
|
|
background-color: #ffa500;
|
2020-12-23 13:28:04 +00:00
|
|
|
background: radial-gradient(#E39823 40%, #8D5001);
|
2020-12-31 13:46:26 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: clamp(12px, 1vw, 50px);
|
|
|
|
padding: 1.3vh;
|
2020-12-27 13:21:53 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
h1{
|
2020-12-31 14:34:10 +00:00
|
|
|
font-size: clamp(20px, 4vw, 170px);
|
2020-12-31 13:46:26 +00:00
|
|
|
|
2020-12-27 13:21:53 +00:00
|
|
|
padding-left: 6;
|
2020-12-31 13:46:26 +00:00
|
|
|
margin-left: 2vw;
|
|
|
|
margin-right: 70vw;
|
|
|
|
margin-top: 10vh;
|
|
|
|
margin-bottom: 70vh;
|
2020-12-17 22:00:58 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
height: 20vh;
|
|
|
|
text-align: left;
|
2020-12-27 13:21:53 +00:00
|
|
|
|
2020-12-27 21:41:10 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
h2, h3{
|
|
|
|
margin-top: 10vh;
|
|
|
|
margin-bottom: 10vh;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
min-width: 720px;
|
|
|
|
max-width: 86vw;
|
|
|
|
|
2020-12-27 13:21:53 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
|
|
|
|
|
2020-12-27 21:41:10 +00:00
|
|
|
.orangeBack{ /*for anything that isnt a <h> tag*/
|
|
|
|
background-color: #ffa500;
|
|
|
|
background: radial-gradient(#E39823 40%, #8D5001);
|
|
|
|
border-radius: 5px;
|
|
|
|
padding: 5px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.orangeBorder{
|
2020-12-28 02:32:51 +00:00
|
|
|
border: 5px outset #E39823;
|
|
|
|
border-radius: 5px;
|
2020-12-27 21:41:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.textBox{
|
|
|
|
text-align: center;
|
|
|
|
padding: 2.5vh;
|
2020-12-31 13:46:26 +00:00
|
|
|
font-size: 1.3vw;
|
2020-12-27 21:41:10 +00:00
|
|
|
}
|
|
|
|
|
2020-12-31 14:57:50 +00:00
|
|
|
#galleryHeader{
|
|
|
|
margin-left: 35vw;
|
|
|
|
margin-right: 35vw;
|
2020-12-31 15:49:54 +00:00
|
|
|
border-radius: 5px;
|
|
|
|
font-size: 1.4vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
#programGallery{
|
|
|
|
display: grid;
|
2021-01-01 14:08:44 +00:00
|
|
|
grid-template-columns: repeat(12, 1fr);
|
2020-12-31 15:49:54 +00:00
|
|
|
grid-template-rows: repeat(10, 1fr);
|
2021-01-01 14:08:44 +00:00
|
|
|
|
2020-12-31 15:49:54 +00:00
|
|
|
height: 70vh;
|
2020-12-31 16:38:36 +00:00
|
|
|
width: 70vw;
|
2020-12-31 15:49:54 +00:00
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
min-width: 800px;
|
|
|
|
min-height: 500px;
|
|
|
|
|
2020-12-31 16:38:36 +00:00
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: 10vh;
|
2021-01-01 14:08:44 +00:00
|
|
|
}
|
2020-12-31 16:38:36 +00:00
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
#personalGallery{
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(12, 1fr);
|
|
|
|
grid-template-rows: repeat(10, 1fr);
|
|
|
|
|
|
|
|
height: 70vh;
|
|
|
|
width: 70vw;
|
|
|
|
|
|
|
|
min-width: 800px;
|
|
|
|
min-height: 500px;
|
|
|
|
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
margin-top: 10vh;
|
2020-12-31 16:38:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
.GalleryImage{ /*all images should be 700x700*/
|
|
|
|
grid-column: 2/8;
|
2020-12-31 16:38:36 +00:00
|
|
|
grid-row: 2/11;
|
|
|
|
border-bottom-left-radius: 5px;
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
object-fit: cover;
|
|
|
|
|
2020-12-31 16:38:36 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
.GalleryTitle{
|
|
|
|
grid-column: 2/12;
|
2020-12-31 16:38:36 +00:00
|
|
|
grid-row: 1;
|
|
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
font-size: 5vh;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
border-top-left-radius: 5px;
|
|
|
|
border-top-right-radius: 5px;
|
2020-12-31 16:38:36 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
.GalleryCaption{
|
|
|
|
grid-column: 8/12;
|
2020-12-31 16:38:36 +00:00
|
|
|
grid-row: 2/11;
|
2021-01-01 14:08:44 +00:00
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
border-bottom-right-radius: 5px;
|
2020-12-31 14:57:50 +00:00
|
|
|
}
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
.GalleryLeftArrow{
|
|
|
|
grid-column: 1;
|
|
|
|
grid-row: 5/6;
|
2020-12-31 16:38:36 +00:00
|
|
|
font-size: 7vw;
|
|
|
|
}
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
.GalleryRightArrow{
|
|
|
|
grid-column: 12;
|
|
|
|
grid-row: 5/6;
|
2020-12-31 16:38:36 +00:00
|
|
|
font-size: 7vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-01-01 14:08:44 +00:00
|
|
|
#socialBar{
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
margin-left: 1vh;
|
|
|
|
margin-bottom: 1vh;
|
|
|
|
|
|
|
|
bottom: 0;
|
|
|
|
left: 0 ;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-12-31 16:38:36 +00:00
|
|
|
|
2020-12-30 13:55:25 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
@media (orientation:portrait){
|
2020-12-29 21:25:29 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
h1{
|
2020-12-31 14:26:49 +00:00
|
|
|
font-size: 10vw;
|
2020-12-29 21:25:29 +00:00
|
|
|
|
2020-12-31 14:09:04 +00:00
|
|
|
margin-left: 0vw;
|
|
|
|
margin-right: 0vw;
|
2020-12-31 13:46:26 +00:00
|
|
|
margin-top: 5vh;
|
|
|
|
margin-bottom: 85vh;
|
2020-12-27 13:21:53 +00:00
|
|
|
|
2020-12-31 14:09:04 +00:00
|
|
|
padding-top: 0.5vh;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
height: 10vh;
|
2020-12-27 13:21:53 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
}
|
2020-12-27 13:21:53 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
h2, h3{
|
|
|
|
margin-top: 10vh;
|
|
|
|
margin-bottom: 10vh;
|
2020-12-31 14:09:04 +00:00
|
|
|
|
|
|
|
min-width: inherit;
|
|
|
|
max-width: inherit;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
|
2020-12-31 15:49:54 +00:00
|
|
|
font-size: 2.3vw;
|
2020-12-31 14:57:50 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#galleryHeader{
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
border-radius: 0;
|
2020-12-31 15:49:54 +00:00
|
|
|
font-size: 3vw;
|
2020-12-31 13:46:26 +00:00
|
|
|
}
|
2021-01-01 14:22:26 +00:00
|
|
|
|
|
|
|
#programGallery{
|
|
|
|
height: 70vh;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#personalGallery{
|
|
|
|
height: 70vh;
|
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
margin-left: 0;
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GalleryImage{ /*all images should be 700x700*/
|
|
|
|
grid-column: 1/13;
|
|
|
|
grid-row: 2/7;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GalleryTitle{
|
|
|
|
grid-column: 1/13;
|
|
|
|
grid-row: 1;
|
|
|
|
|
|
|
|
padding: 5px;
|
|
|
|
|
|
|
|
font-size: 5vh;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GalleryCaption{
|
|
|
|
grid-column: 1/13;
|
|
|
|
grid-row: 7/12;
|
|
|
|
|
|
|
|
border-radius: 0;
|
|
|
|
font-size: 3.2vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GalleryLeftArrow{
|
|
|
|
grid-column: 1;
|
2021-01-01 14:56:54 +00:00
|
|
|
grid-row: 12;
|
2021-01-01 14:22:26 +00:00
|
|
|
font-size: 7vw;
|
|
|
|
}
|
|
|
|
|
|
|
|
.GalleryRightArrow{
|
|
|
|
grid-column: 12;
|
2021-01-01 14:56:54 +00:00
|
|
|
grid-row: 12;
|
2021-01-01 14:22:26 +00:00
|
|
|
font-size: 7vw;
|
|
|
|
}
|
2020-12-27 21:41:10 +00:00
|
|
|
}
|
2020-12-27 13:21:53 +00:00
|
|
|
|
|
|
|
|
2020-12-16 22:00:11 +00:00
|
|
|
|
2020-12-16 22:08:01 +00:00
|
|
|
|
2020-12-31 13:46:26 +00:00
|
|
|
|