-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles0.css
119 lines (100 loc) · 2.29 KB
/
styles0.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
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
119
/* Resetting margins and paddings for common elements*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #efe7e7;
}
header {
background-color: #efe7e7;
color: #22252a;
text-align:center;
font-family: 'Inter', sans-serif;
font-size: 48px;
font-weight: normal;
line-height: 1.2;
margin-top: 28px;
}
footer {
background-color: #efe7e7;
color: #22252a;
text-align: center;
padding: 1em;
font-family: 'Inter', sans-serif;
font-size: 16px;
}
main {
/*padding: 20px;*/
max-width: 1010px; /* Adjust the width as needed */
margin: 0 auto; /* Center the container */
background-color: #efe7e7;
}
.memos {
font-family: 'Inter', sans-serif;
/*background-color: #f5f5f5;*/
margin: 0;
padding: 20px;
font-size: 16px;
}
.memos-intro {
color: #22252a;
line-height: 1.6;
}
.memo-container {
max-width: 720px;
margin: 20px auto;
/*background-color: #ffffff;*/
/*border: 3px solid #969698;*/
/*border-radius: 10px;*/
/*box-shadow: 0 2px 4px #969698;*/
padding: 20px;
}
.memo-header {
border-bottom: 2px solid #34373d;
padding-bottom: 10px;
margin-bottom: 20px;
}
.memo-header p {
margin: 5px 0;
color: #22252a;
}
.memo-body {
color: #22252a;
line-height: 1.6;
/*padding: 0 30px;*/
}
.memo-body p {
margin: 15px 0px 10px;
}
.memo-body p strong {
font-weight: 600;
}
.memo-body ul {
list-style-type: disc;
padding-left: 40px; /* Increased padding to indent more */
/*margin-bottom: 40px;*/
}
.memo-body ul li {
margin-bottom: 10px;
}
a {
text-decoration: underline;
color: inherit; /* Inherit the color from the parent element */
}
.primary-button {
background-color: #34373d;
color: #efe7e7;
padding: 10px 20px; /* Some padding */
border: none; /* No border */
border-radius: 5px; /* Rounded corners */
cursor: pointer; /* Pointer/hand icon */
}
/* Media query for smaller screens */
@media (max-width: 600px) {
.memo-container {
width: 100%; /* Full width within the container */
max-width: none; /* Remove the max-width restriction */
}
}