Skip to content

Commit

Permalink
Test 12
Browse files Browse the repository at this point in the history
  • Loading branch information
arjunvenkat7 committed Mar 28, 2017
1 parent 593b1fc commit 4661124
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ function update() {
</script>
</head>
<body>
<div style="width:800px; margin:0 auto;">
<div style="margin:0 auto;">
<h1>CLONE CLICKER</h1>
<div id ="centertag">
<br />
Expand Down
49 changes: 44 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,45 @@
#health{
background-color: darkred;
color: white;
display: block;
white-space: nowrap;
}
background-color: darkred;
color: white;
display: block;
white-space: nowrap;
}
.row{
display: flex;

}
.col{
flex: 1;
padding: 1em;

}
@media only screen and (max-width: 500px) {
.col{
flex: 0.1;
padding: 1em;

}
}
#footer{
padding-top: 2em;
border-top: 1px #222;
}
body {
background-color: #fff;

}
button{
background-color: #4CAF50;
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
img{
vertical-align:middle;
}

0 comments on commit 4661124

Please sign in to comment.