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 Screen_Shot_2020-06-08_at_10.39.26_AM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Screen_Shot_2020-06-08_at_10.39.36_AM.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dojo-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="center-box">
<div class="center-item"></div>
</div>
<div>
<div class="container">
    <img src="dojo-icon.png" alt="dojo-icon">
    <h1>Coding Dojo</h1>
    <ul>
Expand Down
49 changes: 49 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
}
div{
background-color:white;
align-items: center;
padding: 50px;
}
.center-box{
background-color: blue;
margin: 50px;
display: flex;
justify-content: center;
justify-items: center;
}
.center-item{
background-color: burlywood;
}
.container {
background-color: rgb(32, 173, 255);
display: flex;
justify-content: start;
margin: 50px;
padding: 20px;
}
img{
margin: 40px;
}
h1{
color: white;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 70px;
margin-left: 80px;
}
ul, li{
display:inline;
font-family: "Montserrat", sans-serif;
font-weight: 500;
font-size: 50px;
margin-left: 100px;
}
ul, li, a{
color: white;
text-decoration: none;
}