Gagan0141 commited on
Commit
0962132
·
verified ·
1 Parent(s): 77a9116

Update static/style.css

Browse files
Files changed (1) hide show
  1. static/style.css +13 -53
static/style.css CHANGED
@@ -16,9 +16,7 @@ body {
16
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
17
  }
18
 
19
- .header {
20
- margin-bottom: 20px;
21
- }
22
 
23
  .form-box input {
24
  padding: 10px;
@@ -59,57 +57,19 @@ button:hover {
59
  transform: translateY(-3px);
60
  }
61
 
62
- .logout {
63
- background: #ff4b5c;
64
- }
65
 
66
- .logout:hover {
67
- background: #ff2e44;
68
- }
69
 
70
- .result {
71
- margin-top: 20px;
72
- font-size: 1.2em;
73
- animation: fadeIn 1s ease-in-out;
74
- }
 
75
 
76
  /* Animations */
77
- .fade-in {
78
- animation: fadeIn 1s ease-in-out;
79
- }
80
-
81
- @keyframes fadeIn {
82
- from { opacity: 0; transform: translateY(20px); }
83
- to { opacity: 1; transform: translateY(0); }
84
- }
85
-
86
- .flash-messages {
87
- margin: 15px 0;
88
- }
89
-
90
- .flash {
91
- padding: 10px;
92
- border-radius: 8px;
93
- margin-bottom: 10px;
94
- animation: slideDown 0.5s ease forwards;
95
- }
96
-
97
- .flash.success {
98
- background: #28a745;
99
- color: white;
100
- }
101
-
102
- .flash.error {
103
- background: #dc3545;
104
- color: white;
105
- }
106
-
107
- .flash.info {
108
- background: #17a2b8;
109
- color: white;
110
- }
111
-
112
- @keyframes slideDown {
113
- from { opacity: 0; transform: translateY(-20px); }
114
- to { opacity: 1; transform: translateY(0); }
115
- }
 
16
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
17
  }
18
 
19
+ .header { margin-bottom: 20px; }
 
 
20
 
21
  .form-box input {
22
  padding: 10px;
 
57
  transform: translateY(-3px);
58
  }
59
 
60
+ .logout { background: #ff4b5c; }
61
+ .logout:hover { background: #ff2e44; }
 
62
 
63
+ .result { margin-top: 20px; font-size: 1.2em; animation: fadeIn 1s ease-in-out; }
 
 
64
 
65
+ /* Flash messages */
66
+ .flash-messages { margin: 15px 0; }
67
+ .flash { padding: 10px; border-radius: 8px; margin-bottom: 10px; animation: slideDown 0.5s ease forwards; }
68
+ .flash.success { background: #28a745; color: white; }
69
+ .flash.error { background: #dc3545; color: white; }
70
+ .flash.info { background: #17a2b8; color: white; }
71
 
72
  /* Animations */
73
+ .fade-in { animation: fadeIn 1s ease-in-out; }
74
+ @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
75
+ @keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }