Difference between revisions of "Template:Tuebingen/landing.css"

Line 24: Line 24:
 
.ellipse {
 
.ellipse {
 
opacity: 0;
 
opacity: 0;
animation: example 3s infinite;
+
animation: blinkBalls 3s infinite;
 
stroke: white;
 
stroke: white;
 
fill: #ccc;
 
fill: #ccc;
Line 34: Line 34:
 
}
 
}
  
@keyframes example {
+
@keyframes blinkBalls {
 
     0%  {opacity: 0;}
 
     0%  {opacity: 0;}
 
     50%  {opacity: 1;}
 
     50%  {opacity: 1;}
 
     100%  {opacity: 0;}
 
     100%  {opacity: 0;}
 
}
 
}

Revision as of 02:06, 18 October 2018

body { padding-left: 60px; }

  1. headNavigation {

background-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0)); }

  1. headNavigation a > p {

color: #fff; }

  1. content {

background-color: #333 !important; }

.seperatorLanding {

   background-image: radial-gradient(#fff, #333);
   width: 80%;
   height: 3px;
   margin: 10px auto;

}

.ellipse { opacity: 0; animation: blinkBalls 3s infinite; stroke: white; fill: #ccc; }

.connection { opacity: 0.3; stroke: #ccc; }

@keyframes blinkBalls {

   0%   {opacity: 0;}
   50%   {opacity: 1;}
   100%   {opacity: 0;}

}