Skip to content

Instantly share code, notes, and snippets.

@Chiamaka
Created November 15, 2016 12:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Chiamaka/d77624ba913ba4c4cea251898e628520 to your computer and use it in GitHub Desktop.
Save Chiamaka/d77624ba913ba4c4cea251898e628520 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<link href="https://fonts.googleapis.com/css?family=Arimo" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" media="screen" title="no title">
<style media="screen">
body {
height: 100%;
background-color: #6441A4;
font-size: 2em;
color: white;
font-family: 'Arimo', sans-serif;
padding-top: .6em;
}
html {
height: 100%;
}
a, a:hover, a:visited {
color: white;
text-decoration: none;
}
#main-div {
background-color: black;
width: 90%;
display: block;
margin: auto;
border-radius: 5px;
border-style: solid;
border-color: white;
box-shadow: 10px 10px 5px black;
}
#logo {
display: block;
margin: auto;
margin-top: .8em;
}
#search-input {
height: 35px;
width: 90%;
border-radius: 5px;
padding-left: 2px;
}
.btn {
margin-bottom: .8em;
}
.btn-secondary {
background-color: white;
color: black;
}
.result {
display: block;
margin: auto;
margin-bottom: .5em;
border-style: solid;
border-color: white;
border-radius: 5px;
width: 90%;
color: white;
}
.pic {
height: 3em;
width: 3em;
margin: .5em 0 .5em .5em;
border-style: solid;
border-color: white;
border-radius: 5px;
border-width: medium;
}
.status {
margin-top: 20px;
}
#404 {
display:block;
background-image:url('ogamingsc2-profile_image-9021dccf9399929e-300x300.jpeg');
}
#footer {
font-size: .8em;
left: 0;
bottom: 0;
width: 100%;
margin-top: 1em;
margin-bottom: .3em;
color: white;
}
@media only screen and (min-width: 480px) {
#search-input {
width: 70%;
}
}
@media only screen and (min-width: 768px) {
body {
padding-top: 1em;
}
#main-div {
width: 80%;
}
.btn {
margin-top: 1.9em;
}
#search-input {
width: 120%;
margin-top: .3em;
}
}
</style>
</head>
<body>
<div class="container" id="main-div">
<div class="row">
<div class="col-md-4 col-sm-4 col-xs-12">
<img id="logo" src="http://res.cloudinary.com/devvzv96d/image/upload/c_scale,w_150/v1478861992/Twitch_Logo_White_u5y5an.png">
</div> <!-- close logo div -->
<div style="margin-top:1em;" class="text-center form-group col-md-4 col-sm-4 col-xs-12">
<input type="text" id="search-input" style="color:black;" placeholder="Search...">
</div> <!-- close search form div -->
<div class="text-center col-md-4 col-sm-4 col-xs-12">
<button class="btn btn-secondary">All</button>
<button class="btn btn-secondary">On</button>
<button class="btn btn-secondary">Off</button>
</div> <!-- close buttons div -->
</div> <!-- close row div -->
<div id="result-container">
<div class="result row">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="pic" style="border-color:#49fb35;">
<img class="img-responsive" src="http://res.cloudinary.com/devvzv96d/image/upload/v1479131984/white-error-256_vix4cw.png">
</div>
</div>
<div class="col-md-8 col-sm-8 status">
Error 404: Channel 'brunofin' does not exist
</div>
</div>
<div class="result row">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="pic" style="border-color:#49fb35;">
<img class="img-responsive" src="http://res.cloudinary.com/devvzv96d/image/upload/v1479201066/esl_sc2-profile_image-d6db9488cec97125-300x300_p0viii.jpg">
</div>
</div>
<div class="col-md-8 col-sm-8 status">
Error 404: Channel 'brunofin' does not exist
</div>
</div>
<div class="result row">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="pic" style="border-color:#49fb35;">
<img class="img-responsive" src="https://static-cdn.jtvnw.net/jtv_user_pictures/ogamingsc2-profile_image-9021dccf9399929e-300x300.jpeg">
</div>
</div>
<div class="col-md-8 col-sm-8 status">
Error 404: Channel 'brunofin' does not exist
</div>
</div>
<div class="result row">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="pic" style="border-color:#FF0000;">
<img class="img-responsive" src="http://res.cloudinary.com/devvzv96d/image/upload/v1479202349/freecodecamp-profile_image-d9514f2df0962329-300x300_h9hre0.png">
</div>
</div>
<div class="col-md-8 col-sm-8 status">
Error 404: Channel 'brunofin' does not exist
</div>
</div>
</div>
</div> <!-- close main div -->
<div id="footer" class="text-center">
Coded by <a href='https://www.freecodecamp.com/ellereeeee' target="_blank">Richard Ellery
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment