diff options
Diffstat (limited to 'Neutron-trunk/resources/css/setup.css')
-rw-r--r-- | Neutron-trunk/resources/css/setup.css | 83 |
1 files changed, 83 insertions, 0 deletions
diff --git a/Neutron-trunk/resources/css/setup.css b/Neutron-trunk/resources/css/setup.css new file mode 100644 index 0000000..66e7961 --- /dev/null +++ b/Neutron-trunk/resources/css/setup.css @@ -0,0 +1,83 @@ +* { + font-family: CMS, Arial, Calibri, Ubuntu, Roboto, Liberation Sans, Helvetica, sans-serif; +} + +body { + background-image: url("../../resources/image/config.jpg") !important; + background-size: 100%; + background-repeat: no-repeat; + background-position: initial; +} + +.box { + width: 60% !important; + border-radius: 5px; + box-shadow: 1px 1px 2px gray; + padding: 20px; + background-color: rgb(235, 235, 235); +} + +h1, h2, h3, h4, h5, h6 { + font-weight: normal; +} + +.loader { + width: 56px; + height: 56px; + filter: brightness(0%); +} + +.tip-red { + color: rgb(255, 75, 75); +} + +.tip-green { + color: rgb(132, 255, 75); +} + +.tip-orange { + color: rgb(255, 132, 75); +} + +.termsbox { + background: white; + border: none; + border-color: black; + border-style: solid; + border-width: 1px; + border-radius: 5px; + padding: 5px; + box-shadow: 1px 1px 2px black; +} + +@keyframes blink { + 0% { opacity: 1; } + 50% { opacity: 0; } + 100% { opacity: 1; } +} + +.finisher { + width: 256px; + height: 256px; + filter: brightness(0%); +} + +.update-cancel { + padding: 5px 10px; + border: 1px solid lightgray; + border-radius: 5px; + border-bottom-width: 2px; + background: white; + cursor: pointer; + transition: background 200ms, border-color 200ms; +} + +.update-cancel:hover { + background: lightgray; + border-color: gray; +} + +.update-cancel:active { + background: gray; + border-color: black; +}
\ No newline at end of file |