mirror of
https://github.com/tjsga/website-2018.git
synced 2025-04-21 03:30:16 -04:00
initial commit
This commit is contained in:
parent
4b04218891
commit
b030b1fd42
346
css/main.css
Normal file
346
css/main.css
Normal file
|
@ -0,0 +1,346 @@
|
|||
@font-face {
|
||||
font-family: OpenSans;
|
||||
src: url('../fonts/OpenSans/OpenSans-Regular.ttf')
|
||||
}
|
||||
@font-face {
|
||||
font-family: OpenSans;
|
||||
font-weight: bold;
|
||||
src: url('../fonts/OpenSans/OpenSans-Bold.ttf')
|
||||
}
|
||||
|
||||
|
||||
/*http://meyerweb.com/eric/tools/css/reset/*/
|
||||
html,body,div,span,button,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 {
|
||||
font: inherit;
|
||||
font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
|
||||
font-size: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
vertical-align: baseline;
|
||||
border: 0
|
||||
}
|
||||
|
||||
.fluid {
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-ms-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
}
|
||||
|
||||
.fluid-slow {
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-ms-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
|
||||
header {
|
||||
position: relative;
|
||||
width: 100vw;
|
||||
height: calc(10vh + 50px);
|
||||
}
|
||||
|
||||
#banner {
|
||||
width: 100vw;
|
||||
height: 10vh;
|
||||
text-align: center;
|
||||
display: table;
|
||||
}
|
||||
|
||||
#banner h1 {
|
||||
display: table-cell;
|
||||
vertical-align: middle;
|
||||
font-size: 4vw;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
nav#menu {
|
||||
width: 100vw;
|
||||
height: 50px;
|
||||
display: inline-flex;
|
||||
flex-direction: row;
|
||||
flex-wrap: nowrap;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #1976D2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
button.social {
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
border-radius: 50%;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin: 0 6px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
button.social#github {
|
||||
background: url('../icons/github.png');
|
||||
background-size: cover;
|
||||
}
|
||||
button.social#keybase {
|
||||
background: url('../icons/keybase.png');
|
||||
background-size: cover;
|
||||
}
|
||||
button.social#flickr {
|
||||
background: url('../icons/flickr.png');
|
||||
background-size: cover;
|
||||
}
|
||||
button.flip > i {
|
||||
height: 3vh;
|
||||
width: 3vh;
|
||||
display: block;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
button.expand > i {
|
||||
|
||||
}
|
||||
|
||||
i.left {
|
||||
background-image: url("../icons/ic_keyboard_arrow_left_black_48px.svg");
|
||||
}
|
||||
|
||||
i.right {
|
||||
background-image: url("../icons/ic_keyboard_arrow_right_black_48px.svg");
|
||||
|
||||
}
|
||||
|
||||
i.expand {
|
||||
background-image: url("../icons/ic_expand_less_white_48px.svg");
|
||||
}
|
||||
|
||||
button.flip {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
height: 6vh;
|
||||
width: 3vh;
|
||||
outline: none;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
button.flip.left {
|
||||
top: calc(50% - 3vh);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
button.flip.right {
|
||||
top: calc(50% - 3vh);
|
||||
right: 0;
|
||||
}
|
||||
|
||||
button.flip:hover {
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
button.flip:active {
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
button.expand {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
height: 6vh;
|
||||
width: 4vh;
|
||||
outline: none;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
span > a:hover {
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
span > a:active {
|
||||
color: #212121;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow-x: hidden; /*IMPORTANT TO CHANGE IF EXPANDING*/
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
-webkit-touch-callout: none
|
||||
}
|
||||
|
||||
footer {
|
||||
position: relative;
|
||||
width: 100vw;
|
||||
height: 25px;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background-color: #212121;
|
||||
z-index: 10;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
position: relative;
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
z-index: 1;
|
||||
background-color: #616161;
|
||||
/*background-image: url('../images/bg3-min.jpg');
|
||||
background-size: cover;
|
||||
background-position-x: center;
|
||||
background-position-y: center;
|
||||
background-repeat: no-repeat;
|
||||
*/
|
||||
}
|
||||
|
||||
/*#wrapper:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
content: '';
|
||||
display: block;
|
||||
background-image: url('../images/bg3-min.jpg');
|
||||
background-size: cover;
|
||||
background-position-x: center;
|
||||
background-position-y: center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: -1;
|
||||
}*/
|
||||
|
||||
section {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#desc > h1 {
|
||||
font-size: 3.5em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
#desc > h2 {
|
||||
width: calc(100% - 1em);
|
||||
font-size: 1.2em;
|
||||
padding: 0.5em 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#desc > span {
|
||||
width: calc(100% - 1em);
|
||||
padding: 0 0.5em;
|
||||
font-size: 1.2em;
|
||||
display: inline-block;
|
||||
margin: 0.5em 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/*@media (max-height: 300px) {
|
||||
#desc > span {
|
||||
width: calc(100% - 1em);
|
||||
padding: 0 0.05em;
|
||||
font-size: 0.7em;
|
||||
display: inline-block;
|
||||
margin: 0.5em 0;
|
||||
clear: both;
|
||||
}
|
||||
#desc > h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
#desc > h2 {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
}*/
|
||||
|
||||
#contact {
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
|
||||
a.menu-item {
|
||||
color: #000;
|
||||
font-size: 1em;
|
||||
z-index: 10;
|
||||
display: inline-block;
|
||||
float: left;
|
||||
flex-basis: calc(100vw / 4);
|
||||
}
|
||||
|
||||
button.menu-item {
|
||||
cursor: pointer;
|
||||
font-size: 1.2em;
|
||||
width: 100%;
|
||||
height: 50px;
|
||||
outline: none;
|
||||
color: #fff;
|
||||
background-color: #b71c1c;
|
||||
border: none;
|
||||
}
|
||||
|
||||
button.menu-item:hover {
|
||||
background-color: #7f0000;
|
||||
}
|
||||
|
||||
button.menu-item:active {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#desc:before {
|
||||
position: absolute;
|
||||
top: 0vh;
|
||||
bottom: 0vh;
|
||||
left: 0vw;
|
||||
right: 0vw;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
content: "";
|
||||
display: block;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
-webkit-filter: blur(10px);
|
||||
filter : blur(10px);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#desc {
|
||||
position: absolute;
|
||||
top: 30vh;
|
||||
width: 100vw;
|
||||
min-height: 60vh; /*calc(10.6em + 50px);*/
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
color: #000;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
box-shadow: 0 28px 79px 0 rgba(66,129,121,.27);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
#desc {
|
||||
top: 10vh;
|
||||
height: 80vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px), screen and (max-height: 420px) {
|
||||
button.flip {
|
||||
display: none;
|
||||
}
|
||||
section {
|
||||
height: 100vh;
|
||||
}
|
||||
#desc > h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
#desc {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 225px), screen and (max-height: 420px) {
|
||||
#desc {
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
47
index.html
Normal file
47
index.html
Normal file
|
@ -0,0 +1,47 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta content="" name="description">
|
||||
<meta content="William Zhang" name="author">
|
||||
<meta name="theme-color" content="#1976D2" />
|
||||
<meta name="viewport" content="width=device-width,height=device-height,initial-scale=1.0"/>
|
||||
<link href="icons/favicon.ico" rel="icon" type="image/ico">
|
||||
<link href="css/main.css" rel="stylesheet" />
|
||||
<title>Home - TJSGA</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<header>
|
||||
<div id="banner">
|
||||
<h1>TJ STUDENT GOVERNMENT ASSOCIATION</h1>
|
||||
</div>
|
||||
<nav id="menu">
|
||||
<a class="menu-item" href="index.html">
|
||||
<button class="menu-item fluid">Home</button>
|
||||
</a>
|
||||
<a class="menu-item" href="about.html">
|
||||
<button class="menu-item fluid">About Us</button>
|
||||
</a>
|
||||
<a class="menu-item" href="forms.html">
|
||||
<button class="menu-item fluid">Forms</button>
|
||||
</a>
|
||||
<a class="menu-item" href="links.html">
|
||||
<button class="menu-item fluid">Links</button>
|
||||
</a>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="wrapper" class="fluid">
|
||||
<section id="about">
|
||||
<div id="desc" class="fluid">
|
||||
|
||||
</div>
|
||||
</section>
|
||||
<!--<section id="photos">
|
||||
</section>-->
|
||||
</div>
|
||||
<footer>© 2017 William Zhang</footer>
|
||||
</body>
|
||||
|
||||
</html>
|
332
main.css
Normal file
332
main.css
Normal file
|
@ -0,0 +1,332 @@
|
|||
@font-face {
|
||||
font-family: OpenSans;
|
||||
src: url('../fonts/OpenSans/OpenSans-Regular.ttf')
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: OpenSans;
|
||||
font-weight: bold;
|
||||
src: url('../fonts/OpenSans/OpenSans-Bold.ttf')
|
||||
}
|
||||
|
||||
/*http://meyerweb.com/eric/tools/css/reset/*/
|
||||
html,body,div,span,button,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 {
|
||||
font: inherit;
|
||||
font-family: 'Segoe UI', 'Open Sans', 'Helvetica Neue', Helvetica, sans-serif;
|
||||
font-size: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
vertical-align: baseline;
|
||||
border: 0
|
||||
}
|
||||
|
||||
.fluid {
|
||||
-webkit-transition: all .2s ease;
|
||||
-moz-transition: all .2s ease;
|
||||
-ms-transition: all .2s ease;
|
||||
-o-transition: all .2s ease;
|
||||
transition: all .2s ease;
|
||||
}
|
||||
|
||||
.fluid-slow {
|
||||
-webkit-transition: all .5s ease;
|
||||
-moz-transition: all .5s ease;
|
||||
-ms-transition: all .5s ease;
|
||||
-o-transition: all .5s ease;
|
||||
transition: all .5s ease;
|
||||
}
|
||||
|
||||
#banner h1 {
|
||||
font-size: 36px;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #1976D2;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
button.social {
|
||||
cursor: pointer;
|
||||
outline: none;
|
||||
border-radius: 50%;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
margin: 0 6px;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
button.social#github {
|
||||
background: url('../icons/github.png');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
button.social#keybase {
|
||||
background: url('../icons/keybase.png');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
button.social#flickr {
|
||||
background: url('../icons/flickr.png');
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
button.flip > i {
|
||||
height: 3vh;
|
||||
width: 3vh;
|
||||
display: block;
|
||||
background-size: cover;
|
||||
}
|
||||
|
||||
button.expand > i {
|
||||
}
|
||||
|
||||
i.left {
|
||||
background-image: url(../icons/ic_keyboard_arrow_left_black_48px.svg);
|
||||
}
|
||||
|
||||
i.right {
|
||||
background-image: url(../icons/ic_keyboard_arrow_right_black_48px.svg);
|
||||
}
|
||||
|
||||
i.expand {
|
||||
background-image: url(../icons/ic_expand_less_white_48px.svg);
|
||||
}
|
||||
|
||||
button.flip {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
height: 6vh;
|
||||
width: 3vh;
|
||||
outline: none;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
button.flip.left {
|
||||
top: calc(50% - 3vh);
|
||||
left: 0;
|
||||
}
|
||||
|
||||
button.flip.right {
|
||||
top: calc(50% - 3vh);
|
||||
right: 0;
|
||||
}
|
||||
|
||||
button.flip:hover {
|
||||
background-color: rgba(255, 255, 255, 0.7);
|
||||
}
|
||||
|
||||
button.flip:active {
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
}
|
||||
|
||||
button.expand {
|
||||
cursor: pointer;
|
||||
position: absolute;
|
||||
height: 6vh;
|
||||
width: 4vh;
|
||||
outline: none;
|
||||
background-color: rgba(255, 255, 255, 0.5);
|
||||
}
|
||||
|
||||
span > a:hover {
|
||||
color: #616161;
|
||||
}
|
||||
|
||||
span > a:active {
|
||||
color: #212121;
|
||||
}
|
||||
|
||||
body {
|
||||
overflow: hidden;
|
||||
/*IMPORTANT TO CHANGE IF EXPANDING*/
|
||||
width: 100%;
|
||||
height: 100vh;
|
||||
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||||
-webkit-touch-callout: none
|
||||
}
|
||||
|
||||
footer {
|
||||
position: absolute;
|
||||
width: 100vw;
|
||||
height: 25px;
|
||||
top: calc(100vh - 25px);
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
background-color: #212121;
|
||||
z-index: 10;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
#wrapper {
|
||||
position: absolute;
|
||||
width: 100vw;
|
||||
min-height: 100vh;
|
||||
z-index: 1;
|
||||
background-color: #616161;
|
||||
/*background-image: url('../images/bg3-min.jpg');
|
||||
background-size: cover;
|
||||
background-position-x: center;
|
||||
background-position-y: center;
|
||||
background-repeat: no-repeat;
|
||||
*/
|
||||
}
|
||||
|
||||
/*#wrapper:before {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
content: '';
|
||||
display: block;
|
||||
background-image: url('../images/bg3-min.jpg');
|
||||
background-size: cover;
|
||||
background-position-x: center;
|
||||
background-position-y: center;
|
||||
background-repeat: no-repeat;
|
||||
z-index: -1;
|
||||
}*/
|
||||
section {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#desc > h1 {
|
||||
font-size: 3.5em;
|
||||
margin-top: 0.5em;
|
||||
}
|
||||
|
||||
#desc > h2 {
|
||||
width: calc(100% - 1em);
|
||||
font-size: 1.2em;
|
||||
padding: 0.5em 0;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#desc > span {
|
||||
width: calc(100% - 1em);
|
||||
padding: 0 0.5em;
|
||||
font-size: 1.2em;
|
||||
display: inline-block;
|
||||
margin: 0.5em 0;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/*@media (max-height: 300px) {
|
||||
#desc > span {
|
||||
width: calc(100% - 1em);
|
||||
padding: 0 0.05em;
|
||||
font-size: 0.7em;
|
||||
display: inline-block;
|
||||
margin: 0.5em 0;
|
||||
clear: both;
|
||||
}
|
||||
#desc > h1 {
|
||||
font-size: 1.5em;
|
||||
}
|
||||
#desc > h2 {
|
||||
font-size: 0.7em;
|
||||
}
|
||||
}*/
|
||||
#contact {
|
||||
margin: 1em 0 0 0;
|
||||
}
|
||||
|
||||
#resume a {
|
||||
text-decoration: none;
|
||||
color: #000;
|
||||
font-size: 1em;
|
||||
z-index: 10;
|
||||
}
|
||||
|
||||
#resume button {
|
||||
cursor: pointer;
|
||||
font-size: 1.2em;
|
||||
width: 150px;
|
||||
height: 50px;
|
||||
outline: none;
|
||||
color: #fff;
|
||||
background-color: #1976D2;
|
||||
border: none;
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
#resume:hover button {
|
||||
background-color: #1565C0;
|
||||
}
|
||||
|
||||
#resume:active button {
|
||||
font-size: 1.1em;
|
||||
}
|
||||
|
||||
#desc:before {
|
||||
position: absolute;
|
||||
top: 0vh;
|
||||
bottom: 0vh;
|
||||
left: 0vw;
|
||||
right: 0vw;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
content: ;
|
||||
display: block;
|
||||
background-color: rgba(255, 255, 255, 0.1);
|
||||
-webkit-filter: blur(10px);
|
||||
filter : blur(10px);
|
||||
z-index: -1;
|
||||
}
|
||||
|
||||
#desc {
|
||||
position: absolute;
|
||||
overflow-y: hidden;
|
||||
top: 20vh;
|
||||
left: 15vw;
|
||||
width: 70vw;
|
||||
min-height: 60vh;
|
||||
/*calc(10.6em + 50px);*/
|
||||
text-align: center;
|
||||
vertical-align: middle;
|
||||
color: #000;
|
||||
background-color: rgba(255, 255, 255, 0.9);
|
||||
box-shadow: 0 28px 79px 0 rgba(66,129,121,.27);
|
||||
}
|
||||
|
||||
@media screen and (max-width: 900px) {
|
||||
#desc {
|
||||
left: 5vw;
|
||||
top: 10vh;
|
||||
width: 90vw;
|
||||
height: 80vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 480px), screen and (max-height: 420px) {
|
||||
button.flip {
|
||||
display: none;
|
||||
}
|
||||
|
||||
section {
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
#desc > h1 {
|
||||
font-size: 2em;
|
||||
}
|
||||
|
||||
#desc {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 225px), screen and (max-height: 420px) {
|
||||
#desc {
|
||||
overflow-y: auto;
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user