-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
53 lines (39 loc) · 931 Bytes
/
index.css
File metadata and controls
53 lines (39 loc) · 931 Bytes
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
body {
background-color: rgb(172, 172, 233);
display: grid;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
#dogimage {
text-align: center;
}
#dogimage img {
max-width: 350px;
max-height: 500px;
}
.primary-button {
display: flex;
flex-direction: column; /* Stack items vertically */
justify-content: center;
align-items: center;
text-align: center;
margin-top: 10px;
}
.hover-button {
background-color: #257beb;
color: #fff;
padding: 12px 24px;
font-size: 16px;
border: none;
border-radius: 6px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-button:hover {
background-color: #4f6df1;
box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.3);
transform: translateY(-2px);
}