-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
45 lines (40 loc) · 1.07 KB
/
button.css
File metadata and controls
45 lines (40 loc) · 1.07 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
/* Style for the button */
.custom-button {
display: flex;
align-items: center;
justify-content: center;
width: 200px;
height: 60px;
background-color: #044; /* Black background */
color: #fff; /* White text */
border-radius: 8px; /* Rounded corners */
text-decoration: none; /* No underline */
transition: background-color 0.3s ease; /* Smooth hover effect */
padding: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}
.custom-button:hover {
background-color: #444; /* Darker background on hover */
}
/* Text container for stacking */
.text-container {
display: flex;
flex-direction: column; /* Stack elements vertically */
align-items: center; /* Center-align text */
gap: 4px; /* Space between lines */
}
/* Logo styles */
.play-logo {
height: 40px; /* Adjust logo size */
width: auto;
}
.small-text {
font-size: 12px; /* Small text for "GET IT ON" */
text-transform: uppercase;
display: block; /* Force on own line*/
}
.big-text {
font-size: 18px; /* Larger text for "Google Play" */
font-weight: bold;
display: block;
}