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 zero one photo.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
55 changes: 55 additions & 0 deletions zero-one.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
* {
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, 35) 0px 5px 15px;
border: 2px solid black;
}

.card-two h1{
font-size: 1.5rem;

}

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

.card-two a {
text-decoration: none;
background-color: black;
color: white;
padding: 5px 10px;
}




23 changes: 23 additions & 0 deletions zero-one.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<!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="zero-one.css">
</head>
<body>
<div class="container">
<div class="card">
<div class="card-one">
<img src="zero-one_logo.png" 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>