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
Binary file added code jam/Zero one logo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
50 changes: 50 additions & 0 deletions code jam/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}

.container {
height: 100vh;
width: 100%;
display: flex;
align-items: center;
justify-content: center'
}

.card {
width: 20%;
display: flex;
flex-direction: column;
}

.card-one {
width: 100%;
}
.card-one img {
width: 100%;
}

.card-two {
width: 100%;
padding: 1rem;


box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.card-two h1 {
font-size: 1.5rem;
}

.card.two h2 {
font-size 1.2rem;
margin-bottom:1 rem;
colour: gray;
}

.card-two a{
text-decoration: none;
background-colour: black;
colour: white;
padding: 5px 10px;
}
32 changes: 32 additions & 0 deletions code jam/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeJam - ZeroOne</title>
<link rel="stylesheet" href="index.css">
</head>
<body>


<div class="container">

<div class="card">

<div class="card-one">

<img src="Zero one logo.jpg" alt="">


</div>
<div class="card-two">
<h1>ZeroOne Code Club</h1>
<h2>Student Activity Center</h2>

<a href="#">Join</a>
</div>
</div>

</div>
</body>
</html>