Updated some styles
This commit is contained in:
@@ -1,3 +1,7 @@
|
|||||||
|
$primary-color: #ff3300
|
||||||
|
$primary-color-dark: darken($primary-color, 10%)
|
||||||
|
|
||||||
|
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap')
|
||||||
html,
|
html,
|
||||||
body
|
body
|
||||||
width: 100%
|
width: 100%
|
||||||
@@ -12,18 +16,20 @@ body
|
|||||||
padding-top: 80px
|
padding-top: 80px
|
||||||
padding-bottom: 100px
|
padding-bottom: 100px
|
||||||
background: #eee
|
background: #eee
|
||||||
|
font-family: "Roboto", sans-serif
|
||||||
|
font-optical-sizing: auto
|
||||||
|
|
||||||
a
|
a
|
||||||
color: teal
|
color: $primary-color
|
||||||
transition: color 180ms ease-in-out
|
transition: color 180ms ease-in-out
|
||||||
&:hover
|
&:hover
|
||||||
color: darkcyan
|
color: $primary-color-dark
|
||||||
|
|
||||||
button.button-primary
|
button.button-primary
|
||||||
background: teal
|
background: $primary-color
|
||||||
transition: background 180ms ease-in-out
|
transition: background 180ms ease-in-out
|
||||||
&:hover
|
&:hover
|
||||||
background: darkcyan
|
background: $primary-color-dark
|
||||||
|
|
||||||
textarea
|
textarea
|
||||||
max-width: 100%
|
max-width: 100%
|
||||||
@@ -89,7 +95,7 @@ table tbody tr
|
|||||||
left: 0
|
left: 0
|
||||||
width: 100%
|
width: 100%
|
||||||
height: 64px
|
height: 64px
|
||||||
background: teal
|
background: $primary-color
|
||||||
color: white
|
color: white
|
||||||
z-index: 20
|
z-index: 20
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ template "header" . }}
|
{{ template "header" . }}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>Benchmark</h2>
|
<h2>List of benchmarks</h2>
|
||||||
<a href="/benchmark/create">Add new benchmark</a>
|
<a href="/benchmark/create">Add new benchmark</a>
|
||||||
|
|
||||||
<table class="twelve columns card-2">
|
<table class="twelve columns card-2">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ template "header" . }}
|
{{ template "header" . }}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>Hardware</h2>
|
<h2>List of hardware</h2>
|
||||||
<a href="/hardware/create">Add new hardware</a>
|
<a href="/hardware/create">Add new hardware</a>
|
||||||
|
|
||||||
<table class="twelve columns card-2">
|
<table class="twelve columns card-2">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{{ template "header" . }}
|
{{ template "header" . }}
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h2>Tests</h2>
|
<h2>List of tests</h2>
|
||||||
<a href="/test/create">Create a new test</a>
|
<a href="/test/create">Create a new test</a>
|
||||||
|
|
||||||
<table class="twelve columns card-2">
|
<table class="twelve columns card-2">
|
||||||
|
|||||||
Reference in New Issue
Block a user