diff options
author | David Thompson <dthompson@vistahigherlearning.com> | 2022-01-22 07:46:23 -0500 |
---|---|---|
committer | David Thompson <dthompson@vistahigherlearning.com> | 2022-01-22 07:46:23 -0500 |
commit | 592bc33aa3c03e15d0deccfe8dcfd4188da2015d (patch) | |
tree | 1634044148a81a9886bab153d10fafabd976c575 /css | |
parent | bf0d6bc9600d2a5059e1a23add5eb64c11f0fa6e (diff) |
Separate view and data layer, add more crop details, simplify Crop class.
Diffstat (limited to 'css')
-rw-r--r-- | css/garden.css | 52 |
1 files changed, 40 insertions, 12 deletions
diff --git a/css/garden.css b/css/garden.css index e126ec9..2077bd6 100644 --- a/css/garden.css +++ b/css/garden.css @@ -352,21 +352,21 @@ template { @font-face { font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_R.woff'); + src: url('../fonts/LinLibertine_R.woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_RI.woff'); + src: url('../fonts/LinLibertine_RI.woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Linux Libertine'; - src: url('/fonts/LinLibertine_RB.woff'); + src: url('../fonts/LinLibertine_RB.woff'); font-weight: bold; font-style: normal; } @@ -375,21 +375,21 @@ template { @font-face { font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-r-subset.woff'); + src: url('../fonts/linbio-r-subset.woff'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-ri-subset.woff'); + src: url('../fonts/linbio-ri-subset.woff'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Linux Biolinum'; - src: url('/fonts/linbio-rb-subset.woff'); + src: url('../fonts/linbio-rb-subset.woff'); font-weight: bold; font-style: normal; } @@ -403,7 +403,6 @@ body { font-family: 'Linux Libertine',serif; line-height: 140%; text-rendering: optimizeLegibility; - opacity: 87%; } @media (min-width: 1140px) { @@ -442,7 +441,7 @@ th, td { margin: 0; } -tbody tr:nth-child(even) { +tbody tr:nth-child(odd) { background-color: #306082; } @@ -467,10 +466,6 @@ img.key { max-height: 24px; } -.icon-direct-sow { - background-image: url("images/direct-sow.svg"); -} - a { color: #639bff; } @@ -478,3 +473,36 @@ a { a:visited { color: #847e87; } + +.crop { + color: #fff; +} + +.crop:hover { + cursor: pointer; +} + +.overlay { + position: fixed; + left: 0; + top: 0; + z-index: 9; + width: 100%; + height: 100%; + background-color: #000000bb; +} + +.modal { + position: fixed; + left: 40%; + top: 25%; + width: 20%; + height: 50%; + border-radius: 4px; + background-color: #121212; + padding: 2em; +} + +.detail-subheading { + opacity: 60%; +} |