From 529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105 Mon Sep 17 00:00:00 2001 From: Minteck Date: Tue, 24 Aug 2021 15:38:16 +0200 Subject: Update --- Neutron-trunk/resources/css/ready.css | 52 +++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 Neutron-trunk/resources/css/ready.css (limited to 'Neutron-trunk/resources/css/ready.css') diff --git a/Neutron-trunk/resources/css/ready.css b/Neutron-trunk/resources/css/ready.css new file mode 100644 index 0000000..df489ba --- /dev/null +++ b/Neutron-trunk/resources/css/ready.css @@ -0,0 +1,52 @@ +* { + font-family: CMS, Arial, Calibri, Ubuntu, Roboto, Liberation Sans, Helvetica, sans-serif; +} + +body { + background-image: url("../image/oobe.jpg"); + background-size: 100%; + background-repeat: no-repeat; + background-position: initial; +} + +.discover { + max-width: 40%; +} + +a img { + vertical-align: middle; + padding-right: 5px; +} + +a { + padding: 10px; + border-radius: 5px; + border-style: solid; + border-color: black; + border-width: 1px; + text-decoration: none; + color: black; + transition: border-color 200ms, color 200ms; +} + +a:hover { + border-color: rgb(43, 43, 43); + color: rgb(43, 43, 43); +} + +a:active { + border-color: rgb(77, 77, 77); + color: rgb(77, 77, 77); +} + +hr { + width: 64px; + border-color: black; + border-style: solid; + border-width: 1px; + border-bottom: none; +} + +a:hover > img { + filter: opacity(75%); +} \ No newline at end of file -- cgit