]> git.p6c8.net - jirafeau/jirafeau.git/blobdiff - media/modern/style.css.php
Modified copyright header of all themes
[jirafeau/jirafeau.git] / media / modern / style.css.php
old mode 100755 (executable)
new mode 100644 (file)
index fa992e0..e40760a
@@ -1,9 +1,9 @@
 <?php
 /*
- *  Jyraphe, your web file repository
- *  Copyright (C) 2013
- *  Jerome Jutteau <j.jutteau@gmail.com>
- *  Jimmy Beauvois <jimmy.beauvois@gmail.com>
+ *  Jirafeau, your web file repository
+ *  Copyright (C) 2008  Julien "axolotl" BERNARD <axolotl@magieeternelle.org>
+ *  Copyright (C) 2015  Jerome Jutteau <jerome@jutteau.fr>
+ *  Copyright (C) 2024  Jirafeau project <https://gitlab.com/jirafeau> (see AUTHORS.md)
  *
  *  This program is free software: you can redistribute it and/or modify
  *  it under the terms of the GNU Affero General Public License as
  *  GNU Affero General Public License for more details.
  *
  *  You should have received a copy of the GNU Affero General Public License
- *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
-
-/*
- * This stylesheet is the default stylesheet for Jyraphe.
- * The content is dynamically generated for easier handling.
+ *  along with this program.  If not, see <https://www.gnu.org/licenses/>.
  */
 
 $dark = '#8B4513';
 
-header("Content-type: text/css");
+header('Content-type: text/css');
 
 ?>
 
 body {
-font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;
-font-size: 100%;
-color:#333333;
-margin:0;
-background:#e5e5e5;
+    font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;
+    font-size: 100%;
+    color:#333333;
+    margin:0;
+    background:#e5e5e5;
 }
 
 a, a:link, a:visited {
-       color: #223344;
-       text-decoration: underlined;
+    color: #223344;
+    text-decoration: underlined;
 }
 
 fieldset {
@@ -50,25 +45,23 @@ fieldset {
   margin: auto;
   background: white;
   border: 2px solid #dbdbdb;
--webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    border-radius: 5px;
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
 }
 
 fieldset legend {
-
   color: white;
   font-size:130%;
   background: #cf3b19;
   border: 1px solid #A52E13;
   padding: 5px 20px;
--webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    border-radius: 5px;
+  -webkit-border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
 }
 
 h1 {
-
   font-size: 175%;
   width: 100%;
   text-align: center;
@@ -81,6 +74,12 @@ h1 a {
   color: #333;
 }
 
+h2 {
+  text-decoration: none;
+  color: #333;
+  text-align: center;
+}
+
 fieldset p {
   margin-left: 25%;
 }
@@ -128,13 +127,13 @@ text-align: center;
   padding-bottom: 1ex;
   border: #FB7373 2px solid;
   background-color: #FBB;
-    -webkit-border-radius: 5px;
+  -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
 }
 
 .error p:before {
-text-align: center;
+  text-align: center;
   content: url('error.png');
   padding-right: 1ex;
     -webkit-border-radius: 5px;
@@ -147,7 +146,7 @@ text-align: center;
   padding: 1ex;
   border: #91C27C 2px solid;
   background-color: #BFB;
-    -webkit-border-radius: 5px;
+  -webkit-border-radius: 5px;
   -moz-border-radius: 5px;
   border-radius: 5px;
 }
@@ -211,6 +210,41 @@ font-size:90%;
   border: 2px solid #91C27C;
   margin: auto;
   -webkit-border-radius: 5px;
-    -moz-border-radius: 5px;
-    border-radius: 5px;
+  -moz-border-radius: 5px;
+  border-radius: 5px;
+}
+
+#self_destruct {
+  font-weight: bold;
+  color: red;
+}
+
+#upload_link_email {
+  margin-left: 10px;
+}
+
+#upload_image_email {
+  padding-bottom: 15px;
+  padding-left: 20px;
+  background: url(email.png) no-repeat;
+}
+
+#show_password {
+  flex: 1 1 auto;
+  position: absolute;
+  right: 0%;
+  background: none;
+  border: none;
+  cursor: pointer;
+  opacity: 30%;
+}
+#show_password:hover {
+  opacity: 100%;
+}
+
+.passwordcolumn {
+  display: flex;
+  position: relative;
+  align-items: center;
+  width: 100%;
 }

patrick-canterino.de