Dagfinn1962 commited on
Commit
a685efa
1 Parent(s): 10827ac

Create main.css

Browse files
Files changed (1) hide show
  1. main.css +71 -0
main.css ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ background: #FFB76B;
3
+ background: -webkit-linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%);
4
+ background: -moz-linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%);
5
+ background: linear-gradient(to right, #FFB76B 0%, #FFA73D 30%, #FF7C00 60%, #FF7F04 100%);
6
+
7
+ width: 95%;
8
+ color: #FFFFFF;
9
+ width: 100%;
10
+ padding: 20px;
11
+ border-radius: 10px;
12
+ border: 1px solid #1b0202;
13
+ }
14
+
15
+ gr.blocks {
16
+ background-color: #758bec;
17
+ width: 100%;
18
+ color: #FFFFFF;
19
+ }
20
+ h3 {
21
+ background-color:#758bec;
22
+ color: #FFFFF;
23
+ text-align: center;
24
+ font-family: verdana;
25
+ font-size: 24px;
26
+ border: 1px solid #FFFFFF;
27
+ border-radius: 10px;
28
+ }
29
+
30
+ p {
31
+ font-family: verdana;
32
+ font-size: 14px;
33
+ }
34
+
35
+ label {
36
+ font-family: verdana;
37
+ color: #FFB76B;
38
+ font-weight: 700;
39
+ font-size: 14px;
40
+ border: 1px solid #000000;
41
+ }
42
+
43
+ gr.Textbox {
44
+ font-family: verdana;
45
+ background-color: #000000;
46
+ color: #FFFFFF;
47
+ font-weight: 700;
48
+ font-size: 14px;
49
+ border: 1px solid #FFFFFF;
50
+ border-radius: 6px;
51
+ }
52
+
53
+ gr.Botton {
54
+ font-family: verdana;
55
+ background-color: #758bec;
56
+ color: #FFFFFF;
57
+ font-weight: 700;
58
+ font-size: 14px;
59
+ border: 1px solid #000000;
60
+ border-radius: 6px;
61
+ }
62
+
63
+ a a:active a.hover
64
+ {
65
+ font-family: verdana;
66
+ color: #572430;
67
+ text-decoration: none;
68
+ font-weight: 700;
69
+ font-size: 14px;
70
+
71
+ }