Skip to content

Instantly share code, notes, and snippets.

@jangia
Created April 11, 2019 16:23
Show Gist options
  • Save jangia/61e2615ee5a9cf74e335c78f83f06c64 to your computer and use it in GitHub Desktop.
Save jangia/61e2615ee5a9cf74e335c78f83f06c64 to your computer and use it in GitHub Desktop.
.main {
margin-right: auto;
margin-left: auto;
width: 550px;
height: 250px;
margin-top: 250px;
}
.main img {
margin-left: auto;
margin-right: auto;
display: block;
}
.main input {
border-radius: 25px;
}
.main div {
text-align: center;
}
.main div button {
margin-top: 20px;
display: inline;
background-color: whitesmoke;
height: 35px;
border-radius: 2px;
}
.search {
width: 100%;
margin-left: auto;
margin-right: auto;
display: block;
height: 35px;
}
footer {
display: block;
height: 35px;
background-color: whitesmoke;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
padding: 10px;
}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="boogle.css">
<title>Boogle</title>
</head>
<body>
<div class="main">
<img src="logo.png">
<input class="search">
<div>
<button>Iskanje Google</button>
<button>Klik na srečo</button>
</div>
</div>
<footer>
Slovenija
</footer>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment