-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
125 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
body { | ||
font-family: "Poppins", Arial, sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: hsla(0, 0%, 0%, 0.8); | ||
} | ||
|
||
.card { | ||
background-color: #fff; | ||
border-radius: 2px; | ||
margin: 2rem; | ||
padding: 2rem; | ||
position: relative; | ||
transition: box-shadow 0.50s; | ||
width: 300px; | ||
box-shadow: 0 5px 5px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); | ||
border-radius: 20px; | ||
} | ||
|
||
.who { | ||
font-size: 1.5rem; | ||
font-weight: 500; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.what { | ||
font-size: 1.2rem; | ||
font-weight: 400; | ||
margin-bottom: 1rem; | ||
} | ||
|
||
.when { | ||
font-size: 1.2rem; | ||
font-weight: 400; | ||
display: flex; | ||
align-items: justify ; | ||
} | ||
|
||
.date { | ||
margin-right: 1rem; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>MOBI HYPE</title> | ||
<link rel="icon" href="../public/mobi logo.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./css/events_styles.css" /> | ||
</head> | ||
<body> | ||
<div class="header-content-wrap"> | ||
<div class="header-content"> | ||
<h1>MOBI HYPE</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<h2 class="events-heading">Select Club</h2> | ||
<!-- Choice of clubs here --> | ||
<h3 class="events-heading"><a href="./html/mobi.html">Mobi</a></h3> | ||
<h3 class="events-heading"><a href="./html/csec.html">Cybersecurity Club</a></h3> | ||
<h3 class="events-heading"><a href="./html/acm.html">Association for Computing Machinery</a></h3> | ||
<h3 class="events-heading"><a href="./html/gdc.html">Game Developers Club</a></h3> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>MOBI HYPE</title> | ||
<link rel="icon" href="../public/mobi logo.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./css/events_styles.css" /> | ||
</head> | ||
<body> | ||
<div class="header-content-wrap"> | ||
<div class="header-content"> | ||
<h1>MOBI HYPE</h1> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<h2 class="events-heading">Select Club</h2> | ||
<!-- Choice of clubs here --> | ||
<h3 class="events-heading"><a href="./html/mobi.html">Mobi</a></h3> | ||
<h3 class="events-heading"><a href="./html/csec.html">Cybersecurity Club</a></h3> | ||
<h3 class="events-heading"><a href="./html/acm.html">Association for Computing Machinery</a></h3> | ||
<h3 class="events-heading"><a href="./html/gdc.html">Game Developers Club</a></h3> | ||
</div> | ||
</body> | ||
</html> | ||
<html> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<title>MOBI HYPE</title> | ||
<link rel="icon" href="../public/mobi logo.png" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1" /> | ||
<link rel="stylesheet" href="./css/paper.css" /> | ||
<body> | ||
<div class = "card"> | ||
<div class = "What"> | ||
<h1>Social Coding</h1> | ||
</div> | ||
<div class = "when"> | ||
<h2 class = "date">April 25</h2> | ||
<h2 class = "time">5:00 PM</h2> | ||
</div> | ||
<div class = "where"> | ||
<h2>University Center</h2> | ||
<h2>Concho Room</h2> | ||
</div> | ||
<div class = "who"> | ||
<h2>Mobi</h2> | ||
</div> | ||
</div> | ||
</body> | ||
</html> |