diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 8d5a3c6..a8c321c 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -1,16 +1,15 @@ - - + + - - + @@ -84,4 +91,8 @@ + + + \ No newline at end of file diff --git a/src/assets/logo.png b/src/assets/logo.png index e13bb7b..eaae659 100644 Binary files a/src/assets/logo.png and b/src/assets/logo.png differ diff --git a/src/assets/main.css b/src/assets/main.css index 7f98a27..6b1984b 100644 --- a/src/assets/main.css +++ b/src/assets/main.css @@ -14,12 +14,6 @@ a, transition: 0.4s; } -@media (hover: hover) { - a:hover { - background-color: hsla(160, 100%, 37%, 0.2); - } -} - @media (min-width: 1024px) { body { display: flex; @@ -33,10 +27,8 @@ a, } } -.bwhite { - background-color: white; - color: #282e46; - border: none; +.b { + border: 2px solid transparent; border-radius: 5px; padding: 16px 32px; text-align: center; @@ -48,7 +40,47 @@ a, font-weight: bold; } -.wide.bwhite { +.b.white { + background-color: white; + color: #282e46; +} + +.b.white:hover { + background-color: #282e46; + color: white; + border: 2px solid white; +} + +.b.blue { + background-color: #0088cc; + color: white; + border-radius: 1rem; +} + +.b > img { + max-height: 1.4rem; + margin-left: 2rem; +} + +.wide.b { min-width: 16rem; margin: 0.5rem; } + +/* A #edeef1 box with rounded corners with black content color and content centered vertically and horizontally */ +.rbox { + background-color: #edeef1; + border-radius: 2rem; + padding: 2.5rem 32px; + text-align: center; + display: inline-block; + font-size: 1.6rem; + font-weight: bold; + color: #282e46; + min-width: 16rem; + margin: 0.5rem 3rem; +} + +.rbox > p:not(:first-child) { + margin-top: 1rem; +} diff --git a/src/components/Header.vue b/src/components/Header.vue index 89f7a9c..6764d2b 100644 --- a/src/components/Header.vue +++ b/src/components/Header.vue @@ -1,7 +1,7 @@