-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
118 lines (100 loc) · 3.18 KB
/
styles.css
File metadata and controls
118 lines (100 loc) · 3.18 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
/* styles.css */
@import url("https://fonts.googleapis.com/css2?family=Waiting+for+the+Sunrise&display=swap");
@font-face {
font-family: "ATWriter";
src: url("atwriter.ttf") format("truetype");
font-weight: normal;
font-style: normal;
}
body {
line-height: 1;
color: #333;
font-family: "ATWriter", Arial, sans-serif; /* Apply the ATWriter font */
background-color: #f4f4f4;
margin: 0;
padding: 20px;
/* Add a max-width for the overall body */
max-width: 1100px;
min-width: 800px;
/* Center the body content */
margin-left: auto;
margin-right: auto;
}
h1 {
text-transform: uppercase; /* Make text uppercase */
text-align: center; /* Center the title */
/* font-family: 'Special Elite', Arial, sans-serif; Apply the Special Elite font */
}
p {
color: #666;
}
.div-landing,
.div-landing div {
display: flex;
padding-left: 10px;
padding-right: 10px;
flex-wrap: nowrap; /* Prevent flex items from wrapping */
}
.div-landing > * {
flex: 1; /* Give flex items the ability to grow and shrink as needed */
font-size: 20px;
}
.handwritten-landing {
font-family: "Waiting for the Sunrise", cursive;
font-size: 25px;
color: #251607;
text-decoration: underline;
text-decoration-color: #333; /* Replace #333 with the color of your choice */
text-decoration-thickness: 2px; /* Set the thickness of the underline */
white-space: pre; /* This will preserve spaces and line breaks */
}
.handwritten {
font-family: "Waiting for the Sunrise", cursive;
font-size: 20px;
color: #251607;
text-decoration: none;
}
.table {
margin-top: 20px;
text-align: left; /* Aligns text to the left */
font-size: 18px; /* Sets the font size to 18 pixels */
border-collapse: separate; /* Use separate to allow border spacing to work */
border-spacing: 0; /* Removes the default spacing between borders */
width: 100%; /* Makes the table width 100% of its container */
border: 2px solid #333; /* Sets the border width to 2px and color to #333 */
border-radius: 3px; /* Adds rounded corners to the table with a radius of 3px */
}
.table th,
.table td {
border-left: 2px solid #333;
border-top: 2px solid #333;
padding: 8px; /* Adds some padding inside the cells for better readability */
vertical-align: top; /* Aligns the content at the top of the cells */
}
.table th:first-child,
.table td:first-child {
border-left: none;
}
.table tr:first-child th {
border-top: none;
}
.table tr:first-child th:first-child {
border-top-left-radius: 3px; /* Rounds the top-left corner of the table */
}
.table tr:first-child th:last-child {
border-top-right-radius: 3px; /* Rounds the top-right corner of the table */
}
.table tr:last-child td:first-child {
border-bottom-left-radius: 3px; /* Rounds the bottom-left corner of the table */
}
.table tr:last-child td:last-child {
border-bottom-right-radius: 3px; /* Rounds the bottom-right corner of the table */
}
.table tr {
min-height: 80px; /* Ensures that the row is at least 50px high */
height: 80px; /* Sets a fixed height of 50px for the rows */
}
.table td {
overflow: hidden; /* Hides content that overflows the cell's box */
/* or use 'overflow: auto;' if you want to add scrollbars when content overflows */
}