-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpatchnotes_styles.css
More file actions
92 lines (78 loc) · 1.38 KB
/
Copy pathpatchnotes_styles.css
File metadata and controls
92 lines (78 loc) · 1.38 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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
background-color: #f4f4f4;
}
.container {
width: 90%;
max-width: 1200px;
}
header {
text-align: center;
margin-bottom: 20px;
}
h1 {
margin: 0;
padding: 20px 0;
font-size: 3em;
}
.main-content {
width: 100%;
}
.patchnote {
background: #ffffff;
margin-bottom: 20px;
padding: 20px;
border-radius: 10px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.patchnote h2 {
margin-top: 0;
}
.patchnote .date {
font-size: 0.9em;
color: #777;
margin-bottom: 10px;
}
.patchnote ul {
list-style: none;
padding-left: 0;
}
.patchnote ul li {
background: url('bullet.png') no-repeat left center;
padding-left: 20px;
margin-bottom: 5px;
}
footer {
display: flex;
justify-content: space-between;
width: 100%;
background-color: #f4f4f4;
color: rgb(102, 102, 102);
font-size: 15px;
font-style: italic;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
bottom: 0;
left: 0;
align-items: flex-end;
}
.footer-left {
flex: 1;
text-align: left;
}
.footer-right {
flex: 1;
text-align: right;
}
footer p {
margin: 1px 0;
}
footer a {
color: inherit;
text-decoration: none;
}