]> git.mxchange.org Git - friendica.git/commitdiff
customized and colored buttons
authorhoergen <hoergen@hoergen.org>
Thu, 7 Dec 2017 00:56:21 +0000 (01:56 +0100)
committerhoergen <hoergen@hoergen.org>
Thu, 7 Dec 2017 00:56:21 +0000 (01:56 +0100)
view/theme/vier/plusminus.css

index 0b694c95f0a833cf3c4f9c2faa17fe82aae09e0f..1be216f87ba2ccb612edb1be9c0596e0207e2d92 100644 (file)
@@ -263,6 +263,10 @@ div.pager, ul.tabs {
 
 .wall-item-network { font-size:10px; }
 
+.contact-photo-wrapper .mframe .p-author .h-card {
+  width: 65px;
+}
+
 .shared-time { font-size: 10px; }
 
 .mention { font-size:12px;}
@@ -461,3 +465,44 @@ ul.menu-popup a {
   padding: 0 0 0 5px;
 }
 
+/* Growl Popup */
+
+.jGrowl, .notice * {
+  color: white;
+}
+
+/* Buttons */
+
+input[type=submit] {
+  padding:0px 20px; 
+  color:white;
+  background:#6c82ff; 
+  border:1px solid darkgrey;
+  cursor:pointer;
+  -webkit-border-radius: 5px;
+  border-radius: 5px; 
+  -webkit-transition-duration: 0.4s; /* Safari */
+  transition-duration: 0.4s;
+  box-shadow: 2px 2px 15px 0 rgba(0,0,0,0.24);
+}
+
+input[type=submit]:hover {
+  background:#0026ff; 
+
+}
+
+input[type=text], input[type=password], input[type=email], input[type=url] {
+  padding:2px 2px; 
+  background:white; 
+  border:1px solid darkgrey;
+  cursor:pointer;
+  -webkit-border-radius: 5px;
+  border-radius: 5px; 
+  -webkit-transition-duration: 0.4s; /* Safari */
+  transition-duration: 0.4s;
+}
+
+input[type=text]:focus, input[type=password]:focus, input[type=email]:focus, input[type=url]:focus {
+  background-color:#eef3ff;
+}
+