summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorentin Breton <=>2016-06-17 16:53:04 +0200
committerCorentin Breton <=>2016-06-17 16:53:04 +0200
commitea6f8837f34bf1c822f18efa231a9dcb21a9ff11 (patch)
treede5436c2eabe12b851c3e5149fef1fac00a58ece
parenta8e46c2c9315fe27acd020df237529e7131139f2 (diff)
downloadmy_old_personal_website-ea6f8837f34bf1c822f18efa231a9dcb21a9ff11.tar.xz
my_old_personal_website-ea6f8837f34bf1c822f18efa231a9dcb21a9ff11.zip
Ajout d'un bouton pour rafraichir la page
-rw-r--r--app.php38
1 files changed, 37 insertions, 1 deletions
diff --git a/app.php b/app.php
index ad5e09e..a2d6461 100644
--- a/app.php
+++ b/app.php
@@ -2,9 +2,14 @@
<html>
<head>
<title>Status</title>
+ <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<style type="text/css">
+ a {
+ text-decoration: none;
+ color: #ffffff;
+ }
.bloc{
- background-color: rgb(201, 201, 201);
+ background-color: #959595;
margin-top: 10px;
margin-bottom: 10px;
}
@@ -48,6 +53,34 @@
float: left;
margin-right: 5px;
}
+ .refresh_c{
+ margin-left: auto;
+ margin-right: auto;
+ width: 10%;
+ height: 10%;
+ text-align: center;
+ background-color: #da5907;
+ background-color:#44c767;
+ -moz-border-radius:28px;
+ -webkit-border-radius:28px;
+ border-radius:28px;
+ border:1px solid #18ab29;
+
+ cursor:pointer;
+ color:#ffffff;
+ font-family:Arial;
+ font-size:17px;
+ padding:16px 31px;
+ text-decoration:none;
+ text-shadow:0px 1px 0px #2f6627;
+ }
+ .refresh_c:hover {
+ background-color:#5cbf2a;
+ }
+ .refresh_c:active {
+ position:relative;
+ top:5px;
+ }
</style>
</head>
<body>
@@ -74,5 +107,8 @@
}
}
?>
+<a href="http://neodarz.ovh/web/app.php"><div class="refresh_c">
+<i class="fa fa-refresh fa-5x" aria-hidden="true"></i>
+</div></a>
</body>
</html>