Last active
December 26, 2017 15:24
-
-
Save StellarStoic/1f8d731f5371abf97fa08a21a7f4a823 to your computer and use it in GitHub Desktop.
dOOgle.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
<!DOCTYPE html> | |
<html> | |
<head> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="header"> | |
<span>dMail</span> | |
<span>Photo</span> | |
<span><img src="https://i.imgur.com/F2vnikh.png" alt="tools" /></span> | |
<span><img src="https://i.imgur.com/ckpo2Og.png" alt="notfcuntr" width="20" /></span> | |
<span><img src="https://i.imgur.com/X3dFa8J.png" alt="proflPic"/></span> | |
</div> | |
<div id="main"> | |
<span id="d">d</span> | |
<span><img src="https://i.imgur.com/a8aTpbn.png" alt="respetir" width="200" /></span> | |
<span id="dle">dle</span> | |
</div> | |
<div id="src"> | |
<input type="text" /> | |
<span id="mic"><img src="https://i.imgur.com/hbmwCgI.png" alt="mic" width="18" /></span> | |
<button id="btn1">Doogle Search</button> | |
<button id="btn2">I'm Feeling Lucky</button> | |
</div> | |
<br /> | |
<br /> | |
<div id="updown"> | |
<!--<div> za prikaz skrollinga--> | |
</div> | |
<div id="footer"> | |
<div id="gumbi-spodaj-levo"> | |
<span>Advertising</span> | |
<span>Bussines</span> | |
<span>About</span> | |
</div> | |
<div id="gumbi-spodaj-desno"> | |
<span>Privacy</span> | |
<span>Terms</span> | |
<span>settings</span> | |
<span>Use doogle.com</span> | |
</div> | |
</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
html, body{ | |
padding: 0; | |
margin:0; | |
} | |
#header{ | |
position:fixed; | |
top:0px; | |
right:20px; | |
padding-right: 3px; | |
z-index: 1; | |
} | |
#header span{ | |
font-weight: bold; | |
color: black; | |
margin: 5px; | |
padding: 5px; | |
} | |
#header img{ | |
position:relative; | |
top:10px; | |
width: 30px; | |
height:30px; | |
} | |
#main{ | |
width:350px; | |
height:200px; | |
position:relative; | |
top:70px; | |
margin-right:auto; | |
margin-left: auto; | |
} | |
#d{ | |
color:#3b3b3b; | |
font-weight: 700; | |
position: absolute; | |
top:36px; | |
left:13px; | |
font-size: 80px; | |
z-index: 1; | |
} | |
#main img{ | |
position:absolute; | |
top:15px; | |
right:105px; | |
} | |
#dle{ | |
color:#3b3b3b; | |
font-weight: 700; | |
position: absolute; | |
top:36px; | |
right:8px; | |
font-size: 80px; | |
} | |
#src{ | |
width: 403px; | |
height: 75px; | |
position:relative; | |
top:55px; | |
margin-left: auto; | |
margin-right: auto; | |
} | |
#src input{ | |
position: absolute; | |
top:0; | |
right:0px; | |
height:34px; | |
width: 403px; | |
} | |
#mic{ | |
Position:absolute; | |
top:7px; | |
right:10px; | |
} | |
#src button{ | |
font-weight: 700; | |
position:absolute; | |
bottom: -5px; | |
padding-top: 8px; | |
padding-bottom: 8px; | |
padding-left: 30px; | |
padding-right: 30px; | |
} | |
#btn1{ | |
position:absolute; | |
bottom:0px; | |
left:20px; | |
} | |
#btn2{ | |
position:absolute; | |
right:20px; | |
} | |
#updown{ | |
background-color: rgb(3, 179, 115); | |
position:absolute; | |
top:80px; | |
left;10px; | |
width: 10px; | |
height:1000px; | |
} | |
#footer { | |
position: fixed; | |
bottom: 0px; | |
background-color: #b1b8b1; | |
height: 60px; | |
width: 100%; | |
} | |
#gumbi-spodaj-levo{ | |
position:absolute; | |
bottom:0px; | |
left:0px; | |
height:15px; | |
padding-bottom: 10px; | |
} | |
#gumbi-spodaj-levo span{ | |
padding-left: 10px; | |
margin-right: 8px; | |
color:#154954; | |
} | |
#gumbi-spodaj-desno{ | |
position:absolute; | |
bottom:0px; | |
right:0px; | |
height:15px; | |
padding-bottom: 10px; | |
} | |
#gumbi-spodaj-desno span{ | |
padding-right: 0px; | |
margin-right: 10px; | |
color:#154954; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment