/* CSS Reset */
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/*
Color Pallet Codes:
#75B2BF - light blue
#16808C - dark blue
#264014 - dark green
#64732F - light green
#D98B48 - orange
light text - ivory
dark text - black
*/
/* Rajdhani Font Embed CSS Classes */
.rajdhani-light {
font-family: "Rajdhani", sans-serif;
font-weight: 300;
font-style: normal;
}
.rajdhani-regular {
font-family: "Rajdhani", sans-serif;
font-weight: 400;
font-style: normal;
}
.rajdhani-medium {
font-family: "Rajdhani", sans-serif;
font-weight: 500;
font-style: normal;
}
.rajdhani-semibold {
font-family: "Rajdhani", sans-serif;
font-weight: 600;
font-style: normal;
}
.rajdhani-bold {
font-family: "Rajdhani", sans-serif;
font-weight: 700;
font-style: normal;
}
/* Nanum Gothic Font Embed CSS Class */
.nanum-gothic-regular {
font-family: "Nanum Gothic", sans-serif;
font-weight: 400;
font-style: normal;
}
/* If I want to have a font set as a default, I can do so like below
.nanum-gothic-regular, h1, h2, h3, h4, h5 {
font-family: "Nanum Gothic", sans-serif;
font-weight: 400;
font-style: normal;
}
*/
/* General CSS */
*{
box-sizing: border-box;
}
header{
border: 1px solid #16808C;
background-color: #75B2BF;
min-height: 50px;
}
nav{
border: 1px solid #16808C;
background-color: #D98B48;
min-height: 50px;
text-align: center;
padding: 15px;
color: ivory;
}
body{
background-color: #264014;
}
main{
background-color: #64732F;
border: 1px solid #16808C;
min-height: 400px;
width:100%;
overflow:auto;
}
.container{
border: 1px solid #16808C;
background-color: #16808C;
width: 80%;
margin: 10px auto;
padding: 10px;
min-height: 400px;
max-width: 1200px;
}
aside{
width: 20%;
margin: 10px;
float:right;
min-height: 200px;
border: 1px solid #16808C;
background-color: #D98B48;
}
figure{
clear:both;
width: 95%;
margin: 10px;
float: left;
border: 1px solid #16808C;
background-color: #16808C;
padding: 10px;
}
footer{
clear:both;
min-height: 50px;
border: 1px solid #16808C;
background-color: #75B2BF;
}
img{
width: 100%;
height: auto;
}
/* Headings */
h1{
}
h2{
}
h3{
}
h4{
}
h5{
}
/* Assignment Specific CSS */
#iframe-div{
float:left;
display:flex;
justify-content: center;
align-items: center;
width:75%;
}
#iframe-vid-div{
float:left;
display:flex;
justify-content: center;
align-items: center;
width:75%;
}
iframe{
width: 840px;
height: 540px;
border: 3px #16808C;
border-style:ridge;
}
/* iframe specific styles for compatibility */
html::-webkit-scrollbar{
width:5px;
}
html::-webkit-scrollbar-thumb{
background:rgb(50,50,50);
border-radius:5px;
}
html{
width:100%;
}