This app provides monitoring and information features for the common freifunk user and the technical stuff of a freifunk community.
Code base is taken from a TUM Practical Course project and added here to see if Freifunk Altdorf can use it.
https://www.freifunk-altdorf.de
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
602 B
35 lines
602 B
* { |
|
margin: 0; |
|
padding: 0; |
|
outline: 0; |
|
} |
|
|
|
body { |
|
padding: 80px 100px; |
|
font: 13px "Helvetica Neue", "Lucida Grande", "Arial"; |
|
background: #ECE9E9 -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#ECE9E9)); |
|
background: #ECE9E9 -moz-linear-gradient(top, #fff, #ECE9E9); |
|
background-repeat: no-repeat; |
|
color: #555; |
|
-webkit-font-smoothing: antialiased; |
|
} |
|
h1, h2 { |
|
font-size: 22px; |
|
color: #343434; |
|
} |
|
h1 em, h2 em { |
|
padding: 0 5px; |
|
font-weight: normal; |
|
} |
|
h1 { |
|
font-size: 60px; |
|
} |
|
h2 { |
|
margin-top: 10px; |
|
} |
|
ul li { |
|
list-style: none; |
|
} |
|
#stacktrace { |
|
margin-left: 60px; |
|
}
|
|
|