-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (109 loc) · 1.93 KB
/
style.css
File metadata and controls
122 lines (109 loc) · 1.93 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
119
120
121
122
* {
border: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
background-color: #f8f8f8;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
margin: 0;
}
.main-container {
background-color: #fff;
border: 1px solid #e5e5e5;
border-radius: 10px;
padding: 50px;
width: 100%;
max-width: 900px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
.changelog-header {
text-align: center;
margin-bottom: 3rem;
}
.changelog-header h1 {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.changelog-header p {
color: #999;
font-size: 1.1rem;
}
.timeline {
position: relative;
margin-bottom: 2rem;
display: flex;
flex-direction: column;
align-items: center;
}
.timeline::before {
content: "";
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 2px;
height: 100%;
background-color: black;
}
.timeline-entry {
display: flex;
justify-content: center;
align-items: center;
margin-bottom: 1.5rem;
width: 100%;
position: relative;
height: 60px;
}
.date {
width: 45%;
padding-right: 50px;
text-align: right;
font-size: 1rem;
color: #222;
line-height: 1;
display: flex;
justify-content: flex-end;
align-items: center;
}
.timeline-entry .date::after {
content: "";
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 10px;
height: 10px;
background-color: #333;
border-radius: 50%;
z-index: 1;
}
.entry {
width: 50%;
padding-left: 50px;
font-size: 1.1rem;
line-height: 1;
text-align: left;
white-space: nowrap;
}
.changelog-button {
background-color: #222;
color: #fff;
border: none;
padding: 14px 25px;
width: 50%;
border-radius: 15px;
font-size: 1.1rem;
cursor: pointer;
display: block;
margin: 0 auto;
transition: background-color 0.3s ease;
}
.changelog-button:hover {
background-color: #444;
}