From 226516aca48e97d3dc4e4df213bc2023e64b1afd Mon Sep 17 00:00:00 2001 From: Minteck Date: Sun, 27 Mar 2022 21:29:24 +0200 Subject: Initial commit --- css/frame-home.css | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 css/frame-home.css (limited to 'css/frame-home.css') diff --git a/css/frame-home.css b/css/frame-home.css new file mode 100644 index 0000000..82f171a --- /dev/null +++ b/css/frame-home.css @@ -0,0 +1,51 @@ +#frame-home-intro { + margin-top: 40px; + text-align: center; + padding: 0 10px; +} + +#frame-home-logo { + width: 128px; +} + +#frame-home-welcome { + font-size: 30px; +} + +#frame-home-tagline { + font-size: 18px; +} + +#frame-home-button { + margin-top: 10px; + background: #002e47; + color: white; + border: 1px solid rgba(0, 0, 0, .25); + border-radius: 5px; + padding: 5px 10px; +} + +#frame-home-button:hover { + background: #0e4665; +} + +#frame-home-button:active, #frame-home-button:focus { + background: #1f648b; +} + +#frame-home-links { + font-size: 12px; + margin-top: 10px; + opacity: .5; +} + +.frame-home-link { + color: #0e4665; + cursor: pointer; + text-decoration: underline; + text-decoration-color: transparent; +} + +.frame-home-link:hover { + text-decoration-color: inherit; +} \ No newline at end of file -- cgit