diff options
Diffstat (limited to 'Neutron-trunk/resources/css/ready.css')
-rw-r--r-- | Neutron-trunk/resources/css/ready.css | 52 |
1 files changed, 52 insertions, 0 deletions
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 |