aidevhund commited on
Commit
0c615e7
·
verified ·
1 Parent(s): e80e051

Upload style.css

Browse files
Files changed (1) hide show
  1. style.css +47 -0
style.css ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ /* Genel Arka Plan ve Yazı Renkleri */
3
+ body {
4
+ background-color: #1a1a1a !important; /* Koyu arka plan */
5
+ color: #eaeaea !important; /* Açık yazı rengi */
6
+ }
7
+
8
+ /* Genel Buton Stilleri */
9
+ .gr-button {
10
+ border: 2px solid #ff6f61 !important; /* Turuncu kenarlık */
11
+ background-color: #2d2d2d !important; /* Koyu buton rengi */
12
+ color: white !important; /* Beyaz yazı rengi */
13
+ transition: all 0.3s ease; /* Hover geçiş efekti */
14
+ }
15
+
16
+ /* Hover Efektleri */
17
+ .gr-button:hover {
18
+ background-color: #ff6f61 !important; /* Turuncu arka plan */
19
+ color: black !important; /* Siyah yazı */
20
+ }
21
+
22
+ /* Slider Renkleri */
23
+ .gr-slider .gr-slider-label {
24
+ color: #eaeaea !important; /* Açık renkli etiketler */
25
+ }
26
+
27
+ /* Accordion Başlıkları */
28
+ .gr-accordion-label {
29
+ color: #ff6f61 !important; /* Turuncu başlık rengi */
30
+ }
31
+
32
+ /* Video Çıkış Alanı */
33
+ .gr-video {
34
+ border: 2px solid #ff6f61 !important; /* Turuncu kenarlık */
35
+ border-radius: 5px; /* Hafif yuvarlatılmış köşeler */
36
+ }
37
+
38
+ /* Image Alanları */
39
+ .gr-image {
40
+ border: 2px solid #ff6f61 !important; /* Turuncu kenarlık */
41
+ border-radius: 5px; /* Yuvarlatılmış köşeler */
42
+ }
43
+
44
+ /* Accordion İçerikleri */
45
+ .gr-accordion-content {
46
+ background-color: #2d2d2d !important; /* Koyu içerik arka planı */
47
+ }