Zaiiida commited on
Commit
a0485be
·
verified ·
1 Parent(s): b6b9772

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -95,12 +95,30 @@ footer {
95
 
96
  /* Применяем шрифты */
97
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
98
- body, input, button, textarea, select, .gr-button {
 
99
  font-family: 'Poppins', sans-serif;
100
  background-color: #191a1e !important;
101
  color: #FFFFFF;
102
  }
103
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  /* Настройки заголовков */
105
  h1, h2, h3, h4, h5, h6 {
106
  font-family: 'Poppins', sans-serif;
 
95
 
96
  /* Применяем шрифты */
97
  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700&display=swap');
98
+ /* Общий стиль */
99
+ body, input, textarea, select {
100
  font-family: 'Poppins', sans-serif;
101
  background-color: #191a1e !important;
102
  color: #FFFFFF;
103
  }
104
 
105
+ /* Стиль для кнопок */
106
+ button, .gr-button {
107
+ font-family: 'Poppins', sans-serif;
108
+ background-color: #5271FF !important; /* Голубой цвет для кнопок */
109
+ color: #FFFFFF !important; /* Цвет текста кнопки */
110
+ border: none;
111
+ border-radius: 5px;
112
+ padding: 10px 20px;
113
+ cursor: pointer;
114
+ transition: background-color 0.3s ease;
115
+ }
116
+
117
+ button:hover, .gr-button:hover {
118
+ background-color: #395BB5 !important; /* Более тёмный оттенок при наведении */
119
+ }
120
+
121
+
122
  /* Настройки заголовков */
123
  h1, h2, h3, h4, h5, h6 {
124
  font-family: 'Poppins', sans-serif;