-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (76 loc) · 1.28 KB
/
style.css
File metadata and controls
91 lines (76 loc) · 1.28 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
* {
border-style: border-box;
margin: 0;
padding: 0;
font-family: sans-serif;
}
.main {
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.main-changelog-card {
width: 600px;
height: 600px;
border: 2px solid black;
border-radius: 2rem;
text-align: center;
padding: 1.5rem;
}
.changelog-title {
font-size: 2rem;
font-weight: 300;
margin-bottom: 1rem;
}
.changelog-subtitle {
font-size: 0.9rem;
font-weight: 200;
color: #999;
}
/* Timeline Content */
.content {
display: flex;
justify-content: center;
margin: 2rem;
}
.vertical-line {
border: 1.7px solid black;
width: 0;
height: 400px;
display: flex;
position: relative;
left: 10px;
z-index: 0;
}
.big-dots-wrapper {
display: flex;
}
.big-dots {
display: flex;
flex-direction: column;
position: relative;
right: 1.5px;
top: 14px;
z-index: 1;
}
.dot {
margin: 0.94rem auto;
}
.date {
margin: 2.1rem 10px;
color: #999;
font-size: 0.9rem;
}
.discription {
margin: 2.1rem 10px;
text-align: start;
font-size: 0.9rem;
}
button {
border: none;
color: white;
background-color: black;
padding: 10px 25px;
border-radius: 0.5rem;
}