Sergidev commited on
Commit
039b64e
·
verified ·
1 Parent(s): 399c401

Create static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +86 -0
static/styles.css ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ body {
2
+ font-family: Arial, sans-serif;
3
+ background-color: #f0f0f0;
4
+ }
5
+
6
+ .container {
7
+ max-width: 800px;
8
+ margin: 0 auto;
9
+ padding: 20px;
10
+ background-color: white;
11
+ border-radius: 10px;
12
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
13
+ }
14
+
15
+ .logo {
16
+ display: block;
17
+ margin: 0 auto 20px;
18
+ max-width: 200px;
19
+ }
20
+
21
+ .logo-small {
22
+ display: block;
23
+ margin: 0 auto 10px;
24
+ max-width: 100px;
25
+ }
26
+
27
+ h1, h2, h3 {
28
+ color: #333;
29
+ }
30
+
31
+ input[type="text"], input[type="password"] {
32
+ width: 100%;
33
+ padding: 10px;
34
+ margin-bottom: 10px;
35
+ border: 1px solid #ddd;
36
+ border-radius: 4px;
37
+ }
38
+
39
+ button {
40
+ background-color: #4CAF50;
41
+ color: white;
42
+ padding: 10px 20px;
43
+ border: none;
44
+ border-radius: 4px;
45
+ cursor: pointer;
46
+ font-size: 16px;
47
+ }
48
+
49
+ button:hover {
50
+ background-color: #45a049;
51
+ }
52
+
53
+ table {
54
+ width: 100%;
55
+ border-collapse: collapse;
56
+ margin-bottom: 20px;
57
+ }
58
+
59
+ th, td {
60
+ border: 1px solid #ddd;
61
+ padding: 8px;
62
+ text-align: left;
63
+ }
64
+
65
+ th {
66
+ background-color: #f2f2f2;
67
+ font-weight: bold;
68
+ }
69
+
70
+ .message {
71
+ margin-top: 10px;
72
+ padding: 10px;
73
+ border-radius: 4px;
74
+ }
75
+
76
+ .success {
77
+ background-color: #d4edda;
78
+ color: #155724;
79
+ border: 1px solid #c3e6cb;
80
+ }
81
+
82
+ .error {
83
+ background-color: #f8d7da;
84
+ color: #721c24;
85
+ border: 1px solid #f5c6cb;
86
+ }