amaralibey commited on
Commit
bb1de42
·
verified ·
1 Parent(s): 9ec4f1c

Create style.css

Browse files
Files changed (1) hide show
  1. style.css +86 -0
style.css ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .container {
2
+ max-width: 1200px;
3
+ margin: 0 auto;
4
+ padding: 2rem;
5
+ background-color: #1a1a1a;
6
+ }
7
+
8
+ .header {
9
+ text-align: center;
10
+ margin-bottom: 3rem;
11
+ }
12
+
13
+ .header h1 {
14
+ font-size: 2rem;
15
+ color: #ffffff;
16
+ margin-bottom: 1rem;
17
+ font-weight: 700;
18
+ }
19
+
20
+ .header p {
21
+ color: #9ca3af;
22
+ font-size: 1.1rem;
23
+ }
24
+
25
+ .search-input {
26
+ width: 60%;
27
+ background-color: #374151 !important;
28
+ border: 2px solid #3d3d3d !important;
29
+ border-radius: 40px !important;
30
+ font-size: 1.1rem !important;
31
+ color: #ffffff !important;
32
+ transition: all 0.3s ease;
33
+ }
34
+
35
+ .gallery {
36
+ margin-top: 2rem;
37
+ background-color: #2d2d2d;
38
+ border-radius: 12px;
39
+ padding: 1rem;
40
+ }
41
+
42
+ .controls {
43
+ display: flex;
44
+ gap: 1rem;
45
+ margin-top: 1rem;
46
+ }
47
+
48
+ .dropdown {
49
+ background-color: #2d2d2d;
50
+ border: 2px solid #3d3d3d;
51
+ border-radius: 8px;
52
+ color: #ffffff;
53
+ padding: 0.5rem;
54
+ }
55
+
56
+
57
+
58
+ .footer {
59
+ margin-top: 3rem;
60
+ padding: 0.5rem;
61
+ background-color: #2d2d2d;
62
+ border-radius: 12px;
63
+ text-align: center;
64
+ }
65
+
66
+ .footer a {
67
+ color: #6366f1;
68
+ text-decoration: none;
69
+ transition: color 0.3s ease;
70
+ }
71
+
72
+ .footer a:hover {
73
+ color: #818cf8;
74
+ }
75
+
76
+ @media (max-width: 767px) {
77
+ .gallery {
78
+ grid-template-columns: repeat(3, 1fr) !important;
79
+ }
80
+ }
81
+
82
+ @media (min-width: 768px) {
83
+ .gallery {
84
+ grid-template-columns: repeat(5, 1fr) !important;
85
+ }
86
+ }