Yaswanth56 commited on
Commit
f6a6d9c
·
verified ·
1 Parent(s): b46cf56

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +28 -0
static/styles.css CHANGED
@@ -69,3 +69,31 @@ button:hover {
69
  max-width: 80%;
70
  align-self: flex-end;
71
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  max-width: 80%;
70
  align-self: flex-end;
71
  }
72
+
73
+ button.selection-btn {
74
+ border-radius: 25px;
75
+ padding: 12px 20px;
76
+ margin: 5px;
77
+ font-size: 14px;
78
+ cursor: pointer;
79
+ }
80
+
81
+ .green-btn {
82
+ background-color: #4CAF50;
83
+ color: white;
84
+ }
85
+
86
+ .red-btn {
87
+ background-color: #f44336;
88
+ color: white;
89
+ }
90
+
91
+ .purple-btn {
92
+ background-color: #9C27B0;
93
+ color: white;
94
+ }
95
+
96
+ .clear-btn {
97
+ background-color: #ccc;
98
+ color: black;
99
+ }