summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorJoaK <joak@nospace.at>2016-06-15 03:15:45 +0200
committerJoaK <joak@nospace.at>2016-06-15 03:15:45 +0200
commit45f0dee03b735bb4064b67552ca228dd50f4464c (patch)
tree58c0acd41ef87508ce406cad088e9f5497291126 /static
parent88207be5cb6e6914949810467c0548f5981fc1c4 (diff)
now more content and atmega manual
Diffstat (limited to 'static')
-rw-r--r--static/style.css90
1 files changed, 90 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css
new file mode 100644
index 0000000..bc2c00c
--- /dev/null
+++ b/static/style.css
@@ -0,0 +1,90 @@
+h2 {
+ font-family:sans-serif;
+}
+.list {
+ font-family:sans-serif;
+ margin:0;
+ padding:20px 0 0;
+}
+.list > li {
+ display:block;
+ background-color: #eee;
+ padding:10px;
+ box-shadow: inset 0 1px 0 #fff;
+}
+.avatar {
+ max-width: 150px;
+}
+img {
+ max-width: 100%;
+}
+h3 {
+ font-size: 16px;
+ margin:0 0 0.3rem;
+ font-weight: normal;
+ font-weight:bold;
+}
+p {
+ margin:0;
+}
+
+input {
+ border:solid 1px #ccc;
+ border-radius: 5px;
+ padding:7px 14px;
+ margin-bottom:10px
+}
+input:focus {
+ outline:none;
+ border-color:#aaa;
+}
+.sort {
+ padding:8px 30px;
+ border-radius: 6px;
+ border:none;
+ display:inline-block;
+ color:#fff;
+ text-decoration: none;
+ background-color: #28a8e0;
+ height:30px;
+}
+.sort:hover {
+ text-decoration: none;
+ background-color:#1b8aba;
+}
+.sort:focus {
+ outline:none;
+}
+.sort:after {
+ width: 0;
+ height: 0;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+ border-bottom: 5px solid transparent;
+ content:"";
+ position: relative;
+ top:-10px;
+ right:-5px;
+}
+.sort.asc:after {
+ width: 0;
+ height: 0;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+ border-top: 5px solid #fff;
+ content:"";
+ position: relative;
+ top:13px;
+ right:-5px;
+}
+.sort.desc:after {
+ width: 0;
+ height: 0;
+ border-left: 5px solid transparent;
+ border-right: 5px solid transparent;
+ border-bottom: 5px solid #fff;
+ content:"";
+ position: relative;
+ top:-10px;
+ right:-5px;
+}