-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (85 loc) · 1.65 KB
/
style.css
File metadata and controls
86 lines (85 loc) · 1.65 KB
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
body {
background: radial-gradient(circle, #c64ae6, #fad0c4);
background-size: cover;
background-repeat: no-repeat;
background-position: center;
background-attachment: fixed;
color: rgba(20, 20, 20, 0.993);
min-height: 100vh;
font-weight: bold;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.container {
max-width: 900px;
margin: auto;
padding: 20px;
text-align: center;
}
.cards {
display: flex;
flex-wrap: wrap;
gap: 1rem;
justify-content: center;
}
.card:hover {
background-color: rgb(225, 255, 248);
transform: translateY(-8px);
}
.card {
background: none;
border-radius: 8px;
box-shadow: 0 2px 5px rgba(10, 10, 10, 0.897);
padding: 1rem;
text-decoration: none;
color: inherit;
width: 200px;
cursor: pointer;
transition: background 0.2s ease, transform 0.2s ease;
}
.card h2,
h3 {
margin-top: 0;
}
button {
padding: 8px 12px;
border: none;
background: #89acd1;
color: #fff;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background: #0056b3;
}
.back-btn {
display: inline-block;
margin-bottom: 30px;
padding: 8px 15px;
background: rgba (255 255 255 / 0.2);
border-radius: 8px;
text-decoration: none;
color: white;
font-weight: 600;
transition: background 0.3 ease;
}
.back-btn:hover {
background: rgba(255 255 255 / 0.4);
}
.album-title {
color: deeppink;
}
.user-name {
color: rgb(131, 101, 101);
}
.photo-grid {
display: flex;
flex-wrap: wrap;
gap: 15px;
margin-top: 20px;
}
.photo-grid img {
width: 150px;
height: 150px;
object-fit: cover;
border-radius: 6px;
}