Skip to content

Commit

Permalink
Fixed indents
Browse files Browse the repository at this point in the history
  • Loading branch information
Glennmen committed Oct 4, 2017
1 parent ff69afd commit f62647f
Show file tree
Hide file tree
Showing 13 changed files with 6,614 additions and 6,625 deletions.
32 changes: 4 additions & 28 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -1,39 +1,15 @@
# EditorConfig is awesome: http://EditorConfig.org

# top-most EditorConfig file
root = true

# Unix-style newlines with a newline ending every file
[*]
end_of_line = lf
insert_final_newline = true

# Matches multiple files with brace expansion notation
# Set default charset
[*.{js,py}]
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

# 4 space indentation
[*.py]
[**.php]
indent_style = space
indent_size = 4

# Indentation override for all JS under lib directory
[lib/**.js]
indent_style = space
indent_size = 2

# php
[*.php]
[**.js]
indent_style = space
indent_size = 4
trim_trailing_whitespace = true
charset = utf-8
max_line_length = off
indent_brace_style = Allman
spaces_around_brackets = none

# Matches the exact files either package.json or .travis.yml
[{package.json,.travis.yml}]
indent_style = space
indent_size = 2
54 changes: 27 additions & 27 deletions static/css/statistics.css
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
@charset "UTF-8";

body{
body {
background: #f1f1f1;
z-index: 0;
overflow: auto;
}

table{
table {
background: #f8f8f8;
}

table thead{
table thead {
font-weight: bold;
}

table thead .title{
table thead .title {
text-align: center;
}

table .even{
table .even {
background: #f1f1f1;
}

table tfoot{
table tfoot {
font-weight: bold;
}

table td{
table td {
padding: 5px;
}

.label{
.label {
font-weight: bold;
}

.totals{
.totals {
margin-top: 3.5em;
margin-left: 10px;
margin-right: 10px;
text-transform: uppercase;
}

.options{
.options {
padding-bottom: 5px;
}

.container{
.container {
overflow: auto;
line-height: 20px;
font-size: 15px;
margin-left: 10px;
margin-right: 10px;
}

.container .item{
.container .item {
float: left;
border: 1px solid #acacac;
border-radius: 5px;
Expand All @@ -66,37 +66,37 @@ table td{
min-width: 260px;
}

.container .item .image{
.container .item .image {
float: left;
width: 40px;
text-align: center;
}

.container .item .name{
.container .item .name {
height: 36px;
line-height: 30px;
}

.container .item .name a{
.container .item .name a {
font-weight: bold;
}

.overlay{
.overlay {
z-index: 100000;
display: none;
background-color: rgba(0,0,0,0.5);
background-color: rgba(0, 0, 0, 0.5);
position: fixed;
top: 0;
left: 0;
width: 100%;
min-height: 100%;
}

#location_map{
#location_map {
height: 100%;
}

#times_list{
#times_list {
float: left;
background: white;
position: fixed;
Expand All @@ -107,19 +107,19 @@ table td{
overflow: auto;
}

#times_list div{
#times_list div {
padding-bottom: 2px;
}

#times_list .row0{
#times_list .row0 {
background: #f1f1f1;
}

#times_list .row1{
#times_list .row1 {
background: #f8f8f8;
}

.overlay .close{
.overlay .close {
position: relative;
float: right;
margin-top: 20px;
Expand All @@ -128,7 +128,7 @@ table td{
cursor: pointer;
}

.overlay .content{
.overlay .content {
background: white;
margin: 50px;
border-radius: 10px;
Expand All @@ -141,16 +141,16 @@ table td{
right: 0px;
}

#loading{
#loading {
width: 100%;
height: 100%;
position: fixed;
top: 0px;
}

#loading img{
#loading img {
top: 50%;
left: 50%;
margin-right: -50%;
position: absolute;
}
}
Loading

0 comments on commit f62647f

Please sign in to comment.