Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
49 changes: 34 additions & 15 deletions about.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,34 @@
<!DOCTYPE html>
<html>

<body>
<div id="about">
<center>
<h2>About Us</h2>
<p>Our HackGT Group consists of Huey, Anonto, and Alexander</p>
<p>We are noobs and this is our first hackaton</p>
<p>As we get to learn more about what we are doing we will hopefully finish our project</p>
<p>Thank you for reading and stay tuned for our final product<p>
<h2>Launch Day:TDA<h2>
</center>
</div>
</body>
<!DOCTYPE html>
<html>
<head>
<title>HackGT Perry 2</title>
<link rel="stylesheet" href="hackgt.css">
<script src="wrldcalendar.js"></script>
</head>

<body>
<header>
<div id="about" class = "header">
<h1 id="intro"><center>This is Team Perry's HackGT Global Calender Project</center></h1>
<p><center>The purpose of this calender is to show all the holidays of all the countries in one website for the entire year</center></p>
<!--about, contact, and search bar-->
<a href="index.html" class="about"><center>Home</center></a>
</div>
</header>

<!--calender-->
<body>
<div id="about">
<center>
<h1 class = "text">About Us</h1>
<p class = "maintext">Our HackGT Group consists of Huey, Anonto, and Alexander</p>
<p class = "maintext">We are noobs and this is our first hackaton</p>
<p class = "maintext">As we get to learn more about what we are doing we will hopefully finish our project</p>
<p class = "maintext">Thank you for reading and stay tuned for our final product<p>
<h1 class = "text">Launch Day:TDA<h1>
</center>
</div>
</body>

</body>
</html>
329 changes: 179 additions & 150 deletions hackgt.css
Original file line number Diff line number Diff line change
@@ -1,150 +1,179 @@
/*@import url('https://fonts.googleapis.com/css?family=Chakra+Petch');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Oswald');

body {
font-family: 'Oswald', sans-serif;
color: black;
background-color: #fafafa;
margin: 0;
}

h1 {
font-family: 'Oswald';
color: white;
}

p {
font-family: 'Open+Sans', sans-serif;
color: white;
}

ul {
list-style-type: none;
}

.btn {
width: 200px;
height: 25px;
border-radius: 5px;
background: #1abc9c;
text-align: center;
cursor: pointer;
margin: 0 auto;
}

.btn:hover {
box-shadow: 0px 0px 2px 1px;
}

.arrow {
cursor: pointer;
}

* {box-sizing: border-box;}
ul {list-style-type: none;}
body {font-family: Verdana, sans-serif;}

.header {
overflow: hidden;
background-color: #6c757d;
padding: 20px 10px;
color: white;
font-style: 'light';
font-family: 'Oswald';
display: flex;
justify-content: space-around;
}

.month {
padding: 70px 25px;
width: 100%;
background: #1abc9c;
text-align: center;
}

.month ul {
margin: 0;
padding: 0;
}

.month ul li {
color: white;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 3px;
}

.month .prev {
float: left;
padding-top: 10px;
}

.month .next {
float: right;
padding-top: 10px;
}

.month .title {
font-family: 'Oswald';
font-style: 'light';
font-size:40px;
}

.month .year {
font-family: 'Oswald';
font-style: 'light';
font-size:25px;
}

.weekdays {
margin: 0;
padding: 10px 0;
background-color: #ddd;
font-family: 'Oswald';
}

.weekdays li {
display: inline-block;
width: 13.6%;
color: #666;
text-align: center;
}

.days {
padding: 10px 0;
background: #eee;
margin: 0;
font-family: 'Open Sans';
font-size: 18px;
}

.days li {
list-style-type: none;
display: inline-block;
width: 13.8%;
height: 100px;
text-align: center;
font-size:12px;
color: #777;
}

.days li .active {
padding: 5px;
background: #1abc9c;
color: white !important;
}

/* Add media queries for smaller screens */
@media screen and (max-width:720px) {
.weekdays li, .days li {width: 13.1%;}
}

@media screen and (max-width: 420px) {
.weekdays li, .days li {width: 12.5%;}
.days li .active {padding: 2px;}
}

@media screen and (max-width: 290px) {
.weekdays li, .days li {width: 12.2%;}
}
/*@import url('https://fonts.googleapis.com/css?family=Chakra+Petch');
@import url('https://fonts.googleapis.com/css?family=Open+Sans');*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Oswald');

body {
font-family: 'Oswald', sans-serif;
color: black;
background-color: #fafafa;
margin: 0;
}

h1 {
font-family: 'Oswald';
color: white;
}

p {
font-family: 'Open+Sans', sans-serif;
color: white;
}

a, a:hover, a:active, a:visited { color: white; }

ul {
list-style-type: none;
}

.btn {
width: 200px;
height: 25px;
border-radius: 5px;
background: #1abc9c;
text-align: center;
cursor: pointer;
margin: 0 auto;
}

.btn:hover {
box-shadow: 0px 0px 2px 1px;
}

.arrow {
cursor: pointer;
}

* {box-sizing: border-box;}
ul {list-style-type: none;}
body {font-family: Verdana, sans-serif;}

.text {
color:black;
}

.maintext {
color:black;
font-family: 'Open+Sans', sans-serif;
}

.header {
overflow: hidden;
background-color: #6c757d;
padding: 20px 10px;
color: white;
font-style: 'light';
font-family: 'Oswald';
display: flex;
justify-content: space-around;
}

.month {
padding: 10px 10px;
width: 100%;
background: #1abc9c;
text-align: center;
}

.month ul {
margin: 0;
padding: 0;
}

.month ul li {
color: white;
font-size: 20px;
text-transform: uppercase;
letter-spacing: 3px;
}

.month .prev {
float: left;
padding-top: 10px;
}

.month .next {
float: right;
padding-top: 10px;
}

.month .title {
font-family: 'Oswald';
font-style: 'light';
font-size:40px;
}

.month .year {
font-family: 'Oswald';
font-style: 'light';
font-size:25px;
}

.weekdays {
margin: 0;
padding: 10px 0;
background-color: #ddd;
font-family: 'Oswald';
}

.weekdays li {
display: inline-block;
width: 13.6%;
color: #666;
text-align: center;
}

.days {
padding: 10px 0;
background: #eee;
margin: 0;
font-family: 'Open Sans';
font-size: 18px;
}

.days li {
list-style-type: none;
display: inline-block;
width: 13.8%;
height: 100px;
text-align: center;
font-size:12px;
color: #777;
}

.days li .active {
padding: 5px;
background: #1abc9c;
color: white !important
}

.footer {
overflow: hidden;
padding: 10px 10px;
background-color: #010b1c;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: white;
text-align: center;
}

.footer .text {
font-style: 'light';
font-family: 'Oswald'
color: white !important;
}

/* Add media queries for smaller screens */
@media screen and (max-width:720px) {
.weekdays li, .days li {width: 13.1%;}
}

@media screen and (max-width: 420px) {
.weekdays li, .days li {width: 12.5%;}
.days li .active {padding: 2px;}
}

@media screen and (max-width: 290px) {
.weekdays li, .days li {width: 12.2%;}
}
Loading