diff --git a/public/css/kourend.css b/public/css/kourend.css index 2b23149..404620b 100644 --- a/public/css/kourend.css +++ b/public/css/kourend.css @@ -15,6 +15,22 @@ body{ background: #eee; } +a{ + color: teal; + transition: color 180ms ease-in-out; +} +a:hover{ + color: darkcyan; +} + +button.button-primary{ + background: teal; + transition: background 180ms ease-in-out; +} +button.button-primary:hover{ + background: darkcyan; +} + textarea{ max-width: 100%; min-width: 100%; @@ -25,6 +41,33 @@ form select[multiple]{ min-height: 100px; } +table{ + border: 1px solid #ddd; + border-radius: 8px; + border-spacing: 0; + overflow: hidden; +} + +table th, +table td, +table th:first-child, +table td:first-child{ + border: none; + padding: 7px 12px; +} + +table thead tr{ + border-radius: 8px 8px 0 0; +} +table tbody tr:last-child{ + border-radius: 0 0 8px 8px; +} + +table thead tr, +table tr:nth-child(even){ + background: #eee; +} + /* Material card styles */ .card-1 { box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24); @@ -52,7 +95,7 @@ form select[multiple]{ } .container{ - max-width: 1024px; + max-width: 1200px; } #main-nav{ @@ -92,7 +135,7 @@ form select[multiple]{ } #main-content{ - padding: 14px 20px; + padding: 15px 25px; background: white; border-radius: 8px; z-index: 10; diff --git a/templates/benchmark/list.tmpl b/templates/benchmark/list.tmpl index fddda1f..f555933 100644 --- a/templates/benchmark/list.tmpl +++ b/templates/benchmark/list.tmpl @@ -4,7 +4,7 @@

Benchmark

Add new benchmark - +
diff --git a/templates/hardware/list.tmpl b/templates/hardware/list.tmpl index 0de350a..55f7ad3 100644 --- a/templates/hardware/list.tmpl +++ b/templates/hardware/list.tmpl @@ -4,7 +4,7 @@

Hardware

Add new hardware -
Name
+
diff --git a/templates/hardware/view.tmpl b/templates/hardware/view.tmpl index 5baa876..c6cd4e5 100644 --- a/templates/hardware/view.tmpl +++ b/templates/hardware/view.tmpl @@ -12,7 +12,7 @@ {{ $length := len .hardware.Tests }} {{ if eq $length 0 }}

There are currently no tests using this hardware component.

{{ else }} -
Name
+
diff --git a/templates/test/list.tmpl b/templates/test/list.tmpl index ef02c56..a5fdfbd 100644 --- a/templates/test/list.tmpl +++ b/templates/test/list.tmpl @@ -4,7 +4,7 @@

Tests

Create a new test -
Test
+
diff --git a/templates/test/view.tmpl b/templates/test/view.tmpl index fe857c5..41de899 100644 --- a/templates/test/view.tmpl +++ b/templates/test/view.tmpl @@ -69,7 +69,7 @@ {{ $length := len .test.Results }} {{ if eq $length 0 }}

There are currently no benchmarks recorded in this test.

{{ else }} -
Title
+
Benchmark