-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
73 lines (63 loc) · 1.76 KB
/
styles.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
/* Scrolling */
#rssfeed {
height: 100vh; /* Adjust to your desired viewport height */
overflow: auto;
}
/* Base styling for light mode */
body {
background-color: #FFFFFF; /* White background */
color: #786854; /* Brownish text color */
font-family: 'Foundry Monoline OT2', sans-serif;
font-size: 16px;
/* pointer-events: none; */
}
/* Adjust the color of headings */
h1, h2, h3, h4, h5, h6 {
color: #009EE0; /* Bright blue color for headings */
}
/* Styling for header (title and logo) */
.header {
font-size: 20px;
display: flex;
align-items: center;
margin-left: auto;
margin-right: auto;
}
.logo {
margin-right: 20px; /* Adjust as needed */
margin-top: 10px;
/* Add any additional styling for the logo */
}
/* Styling for individual RSS items */
.rss-item {
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ddd;
position: relative;
/* Hyphenation and Word Wrapping */
hyphens: auto; /* Enable automatic hyphenation */
-webkit-hyphens: auto; /* For Safari */
-ms-hyphens: auto; /* For Internet Explorer */
-moz-hyphens: auto; /* For Firefox */
word-wrap: break-word; /* Allow long words to be broken and wrapped to the next line */
}
/* Apply text styles to all children in .rss-item except h1 */
.rss-item *:not(h1) {
text-align: justify; /* Justify the text for block appearance */
}
/* Styling for QR code containers */
.qr-code-container {
position: absolute;
right: 10px;
top: 10px;
width: 128px;
height: 128px;
}
/* Style links for better visibility */
a {
color: #009EE0; /* Bright blue color for links */
text-decoration: none;
}
a:hover {
text-decoration: underline;
}