Browse code

Created repository.

DoubleBastionAdmin authored on 26/01/2022 20:32:42
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,85 @@
1
+/**
2
+ *  Copyright (C) 2021  Double Bastion LLC
3
+ *
4
+ *  This file is part of Roundpin, which is licensed under the
5
+ *  GNU Affero General Public License Version 3.0. The license terms
6
+ *  are detailed in the "LICENSE.txt" file located in the root directory.
7
+ */
8
+
9
+    body {
10
+       background-color: #F5F5F5;
11
+       padding: 20px;
12
+    }
13
+
14
+    #mainarea {
15
+       display: block;
16
+       margin: auto;
17
+       background-color: #e9f4fc;
18
+       padding: 30px;
19
+       max-width: 660px;
20
+       font-size: 18px;
21
+       -webkit-box-shadow: 3px 5px 32px -4px rgba(0,0,0,0.75);
22
+       -moz-box-shadow: 3px 5px 32px -4px rgba(0,0,0,0.75);
23
+       box-shadow: 3px 5px 32px -4px rgba(0,0,0,0.75);
24
+       border-radius: 0px;
25
+    }
26
+
27
+    .logosetuppage {
28
+       display: block;
29
+       margin: auto
30
+    }
31
+
32
+    .setupStage {
33
+       display: block;
34
+       margin: auto;
35
+       padding-bottom: 70px
36
+    }
37
+
38
+    .fieldlabels {
39
+       display: block;
40
+       margin: 0px 0px -14px 0px;
41
+       text-align: center;
42
+       font-size: 17px;
43
+       font-weight: 600;
44
+    }
45
+
46
+    .textinput {
47
+       display: block;
48
+       margin: auto;
49
+       height: 35px;
50
+       width: 330px;
51
+       font-size: 17px;
52
+       padding: 0px 7px 0px 7px;
53
+       outline: none !important;
54
+       border-radius: 5px 5px 5px 5px;
55
+       -moz-border-radius: 5px 5px 5px 5px;
56
+       -webkit-border-radius: 5px 5px 5px 5px;
57
+       border: 0px solid #000000;
58
+      -webkit-box-shadow: 3px 4px 12px -3px rgba(0,0,0,0.75);
59
+      -moz-box-shadow: 3px 4px 12px -3px rgba(0,0,0,0.75);
60
+      box-shadow: 3px 4px 12px -3px rgba(0,0,0,0.75);
61
+    }
62
+
63
+    #createconfigbttn, #submitadminbttn {
64
+       display: block;
65
+       margin: auto;
66
+       background-color: #6290CC;
67
+       color: #FFFFFF;
68
+       font-weight: bold;
69
+       padding: 13px;
70
+       font-size: 16px;
71
+       border-radius: 5px 5px 5px 5px;
72
+       -moz-border-radius: 5px 5px 5px 5px;
73
+       -webkit-border-radius: 5px 5px 5px 5px;
74
+       border: 0px solid #000000;
75
+    }
76
+
77
+    #createconfigbttn:hover, #submitadminbttn:hover {
78
+      cursor: pointer;
79
+      background-color: #5279AC;
80
+    }
81
+
82
+    #createconfigbttn:active, #submitadminbttn:active {
83
+      cursor: pointer;
84
+      background-color: #416493;
85
+    }