Jfink09 commited on
Commit
5c3250e
·
verified ·
1 Parent(s): f6a7710

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +31 -0
app.py CHANGED
@@ -82,6 +82,37 @@ button {
82
  color: #fff;
83
  }
84
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
85
  footer {
86
  visibility: hidden;
87
  }
 
82
  color: #fff;
83
  }
84
 
85
+
86
+ button:hover {
87
+ cursor: pointer;
88
+ opacity: .7;
89
+ }
90
+
91
+ button:active{
92
+ box-shadow: 4px 4px 6px 0 rgba(255,255,255,.3),
93
+ -4px -4px 6px 0 rgba(116, 125, 136, .2),
94
+ inset -4px -4px 6px 0 rgba(255,255,255,.2),
95
+ inset 4px 4px 6px 0 rgba(0, 0, 0, .2);
96
+ }
97
+
98
+ input {
99
+ background-color: #202428;
100
+ color: #fff;
101
+ border: 1px solid #2d353c;
102
+ border-radius: 5px;
103
+ padding: 10px 20px;
104
+ outline: none;
105
+ font-size: 16px;
106
+ }
107
+
108
+ ::-webkit-input-placeholder {
109
+ color: #7a848f;
110
+ }
111
+
112
+ input:focus::placeholder {
113
+ color: transparent;
114
+ }
115
+
116
  footer {
117
  visibility: hidden;
118
  }