Skip to content
Closed
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
Binary file added icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@
<!-- Google Analytics - END -->

<link rel="stylesheet" href="style.css">
<link rel="shortcut icon" href="icon.png">
</head>

<body>
<div id="box">
<header>
<h1>Learn Teach Code</h1>
<p class="tagline">A community for anyone who wants to learn about computer science or programming</p>
Expand Down Expand Up @@ -48,7 +50,7 @@ <h2>Stuff we do at Learn Teach Code:</h2>
<li>And other random, fun activities like geeky movie nights and joint events with other meetups!</li>
</ul>
</section>

</div>
<footer>
<p>
<strong>Want to get more involved with our community?</strong>
Expand All @@ -58,6 +60,7 @@ <h2>Stuff we do at Learn Teach Code:</h2>
<strong>Want to sponsor us?</strong> We're always on the lookout for more meeting spaces. Let us know if you have any suggestions or would like to sponsor us at your office!
</p>
</footer>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="custom.js"></script>
</body>
Expand Down
20 changes: 14 additions & 6 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ body {
font-size:1.1em;
line-height: 1.5;
color: #404040;
margin: 0;
max-width: 55rem;
margin: 0 auto;
padding: 4rem 3rem;
}

#box{
border: 1px solid black;
box-shadow: 3px 3px 3px grey;
}
a {
color: #b74949;
}
Expand Down Expand Up @@ -47,7 +49,7 @@ header {
border-bottom: 1px solid #ddd;
}
header h1 {
margin-top: 0px;
margin-top: 0;
}

.tagline {
Expand All @@ -69,7 +71,7 @@ section {
/** UPCOMING EVENTS **/
.meetups {
list-style: none;
padding-left: 0px;
padding-left: 0;
}

.meetup {
Expand All @@ -89,7 +91,7 @@ section {
}
.datebox .dow {
background-color: rgba(183, 73, 73, 0.30);
padding: 3px 3px 1px 0px;
padding: 3px 3px 1px 0;
text-transform: uppercase;
font-weight: 600;
}
Expand Down Expand Up @@ -125,7 +127,13 @@ section {
.load-more a:hover {
background: rgba(183, 73, 73, 0.30);
}

footer{
background: #f4f4f4;
width: 100%;
margin-top: 1%;
border: 1px solid black;
box-shadow: 3px 3px 3px grey;
}
/** MOBILE STYLES **/
@media only screen and (max-device-width: 768px) {

Expand Down