-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (82 loc) · 1.73 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/* Base Styles */
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background-color: #f0f2f5;
color: #333;
text-align: center;
border-radius: 18px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
/* Container styling to centralize content */
.container {
width: 700px;
padding: 30px;
margin: 0.1px auto;
background-color: #fff;
border-radius: 18px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
}
/* Headings */
h1 {
font-size: 28px;
color: #2c3e50;
margin-bottom: 20px;
}
/* Labels and Inputs */
label {
display: block;
margin-top: 15px;
font-weight: bold;
color: #333;
}
input[type="text"], select {
width: calc(100% - 40px);
max-width: 90%;
padding: 12px;
margin-top: 8px;
border-radius: 8px;
border: 1px solid #ccc;
font-size: 16px;
box-sizing: border-box;
transition: border-color 0.3s;
}
input[type="text"]:focus, select:focus {
border-color: #4caf50;
outline: none;
}
/* Buttons */
button {
background-color: #4caf50;
color: white;
border: none;
padding: 12px 24px;
border-radius: 8px;
cursor: pointer;
font-size: 16px;
transition: background-color 0.3s, box-shadow 0.3s;
margin-top: 20px;
}
button:hover {
background-color: #45a049;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.photo-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 10px;
padding: 10px;
}
.photo-grid .photo {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
object-fit: cover;
transition: transform 0.2s;
}
/* Hover effect */
.photo-grid .photo:hover {
transform: scale(1.15);
}