##// END OF EJS Templates
New template, clean code, workig for realtime
New template, clean code, workig for realtime

File last commit:

r21:dc5f8680b6e1
r21:dc5f8680b6e1
Show More
style.css
57 lines | 1.0 KiB | text/css | LassoCssLexer
/* DESDE ACA COPIE DEL BASE.HTML*/
html {
font-size: 14px;
}
@media (min-width: 768px) {
html {
font-size: 16px;
}
}
.container {
max-width: 960px;
}
.home-header {
max-width: 700px;
}
.text-igp {
color: #3aa2e8;
}
.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }
.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
.loader {
border: 10px solid #f3f3f3;
border-radius: 50%;
border-top: 10px solid #3aa2e8;
width: 40px;
height: 40px;
-webkit-animation: spin 2s linear infinite; /* Safari */
animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
0% { -webkit-transform: rotate(0deg); }
100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.no-data {
text-align: center;
background-color: #d58512;
padding: 8px 16px;
border-radius: 5px;
color: #FEFEFE;
font: 20px 'Helvetica';
text-transform: uppercase;
}