-
Notifications
You must be signed in to change notification settings - Fork 0
/
reader.css
45 lines (41 loc) · 2 KB
/
reader.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
#container {
display: block;
box-sizing: border-box; /* Include padding and border in the element's total width and height */
width: 100%; /* Ensure these elements do not exceed the width of the viewport */
word-wrap: break-word; /* Break the word at the end of the line */
}
body {
font-family: Arial, sans-serif;
line-height: 1.6;
padding: 10px;
color: #000000;
background-color: #FAFAFA;
border: 1px solid #d0d0d0; /* A subtle border */
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.75); /* Slight shadow for 3D effect */
margin: 4px; /* Space around the body to show off the shadow */
width: 100%; /* Adjust the body's width to occupy the full width of the viewport */
overflow: auto; /* Enable scrolling if the content exceeds the height of the viewport */
word-wrap: break-word; /* Break the word at the end of the line */
box-sizing: border-box; /* Include padding and border in the element's total width and height */
}
#summarizedTextContainer {
width: 100%; /* Set the width of the summarizedTextContainer to 100% of the viewport width */
border-top: 1px solid #000; /* Add a horizontal divider */
height: 100vh; /* Set the height of the summarizedTextContainer to 100% of the viewport height */
overflow: auto; /* Enable scrolling if the content exceeds the height of the viewport */
padding: 10px; /* Add some padding around the summarized text */
box-sizing: border-box; /* Include the padding in the element's total width and height */
word-wrap: break-word; /* Break the word at the end of the line */
}
#logo {
position: absolute;
top: 10px; /* Adjust these values to position your logo */
left: 10px;
margin: 10px; /* Adjust as needed for desired spacing */
width: 50px; /* Adjust to the desired size */
height: auto; /* This maintains the logo's aspect ratio */
z-index: 1; /* Ensure the logo sits above other content */
}
img {
max-width: 100%; /* Ensure images are not larger than their container */
}