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;
|
|
|
|
grid-template-rows: repeat(10, 1fr);
|
|
|
|
grid-template-columns: repeat(10, 1fr);
|
|
|
|
height: 70vh;
|
|
|
|
|
2020-12-31 14:57:50 +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
|
|
|
}
|
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
|
|
|
|