Created
May 17, 2018 10:51
-
-
Save AndFran/fc514a343b9bd9067ee1ac241be94830 to your computer and use it in GitHub Desktop.
boogle
This file contains hidden or 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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Title</title> | |
<link rel="stylesheet" type="text/css" href="style.css"> | |
</head> | |
<body> | |
<p class="center big-letters"> | |
<span class="blue-text">B</span><span class="red-text">o</span><span class="yellow-text">o</span><span class="blue-text">g</span><span class="green-text">l</span><span class="red-text">e</span> | |
</p> | |
<input class="large-tb-center" type="text" placeholder="Enter search terms here"> | |
<div class="button-part"> | |
<button class="button-main-grey">Boolge Search</button> | |
<button class="button-main-grey">I'm feeling lucky</button> | |
</div> | |
<footer class="center"> | |
<p>Google offered in: <a href="">español</a> <a href="">català</a> <a href="">galego</a> <a href="">euskara</a></p> | |
</footer> | |
</body> | |
</html> |
This file contains hidden or 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
.big-letters { | |
font-size: 100px; | |
} | |
.blue-text { | |
color: blue; | |
} | |
.red-text { | |
color: red; | |
} | |
.yellow-text { | |
color: yellow; | |
} | |
.green-text { | |
color: green; | |
} | |
.center{ | |
text-align: center; | |
} | |
.large-tb-center{ | |
display: block; | |
width: 500px; | |
margin: 0 auto; | |
text-align: center; | |
height: 40px; | |
border-radius: 15px; | |
border: 3px solid blanchedalmond; | |
} | |
.button-main-grey{ | |
display: inline-block; | |
height: 50px; | |
width: 150px; | |
border: 0; | |
border-radius: 10px; | |
} | |
.button-part{ | |
width: 90%; | |
margin: 0 auto; | |
text-align: center; | |
padding-top: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment