Skip to content

Commit e38404b

Browse files
committed
Updating for smoother presentation and updated inoreader
1 parent 28ce045 commit e38404b

28 files changed

Lines changed: 6897 additions & 1756 deletions

button.css

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
/* Style for the button */
2+
.custom-button {
3+
display: flex;
4+
align-items: center;
5+
justify-content: center;
6+
width: 200px;
7+
height: 60px;
8+
background-color: #044; /* Black background */
9+
color: #fff; /* White text */
10+
border-radius: 8px; /* Rounded corners */
11+
text-decoration: none; /* No underline */
12+
transition: background-color 0.3s ease; /* Smooth hover effect */
13+
padding: 10px;
14+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow */
15+
}
16+
17+
.custom-button:hover {
18+
background-color: #444; /* Darker background on hover */
19+
}
20+
21+
/* Text container for stacking */
22+
.text-container {
23+
display: flex;
24+
flex-direction: column; /* Stack elements vertically */
25+
align-items: center; /* Center-align text */
26+
gap: 4px; /* Space between lines */
27+
}
28+
29+
/* Logo styles */
30+
.play-logo {
31+
height: 40px; /* Adjust logo size */
32+
width: auto;
33+
}
34+
35+
.small-text {
36+
font-size: 12px; /* Small text for "GET IT ON" */
37+
text-transform: uppercase;
38+
display: block; /* Force on own line*/
39+
}
40+
41+
.big-text {
42+
font-size: 18px; /* Larger text for "Google Play" */
43+
font-weight: bold;
44+
display: block;
45+
}

centralizing-lit.html

Lines changed: 1814 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)