aboutsummaryrefslogtreecommitdiff
path: root/Neutron-trunk/resources/css/setup.css
diff options
context:
space:
mode:
authorMinteck <nekostarfan@gmail.com>2021-08-24 15:38:16 +0200
committerMinteck <nekostarfan@gmail.com>2021-08-24 15:38:16 +0200
commit529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105 (patch)
tree8a50c30271b9b328cde0d907b1441f2dabdc341b /Neutron-trunk/resources/css/setup.css
parent15e4724761c50b30803df1811a525c85058f70bf (diff)
downloadelectrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.tar.gz
electrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.tar.bz2
electrode-529ffcbfa97ab51a64a97f6dff08aeb2bc0cc105.zip
Update
Diffstat (limited to 'Neutron-trunk/resources/css/setup.css')
-rw-r--r--Neutron-trunk/resources/css/setup.css83
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