-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathststyles.css
108 lines (93 loc) · 1.7 KB
/
ststyles.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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
text-align: center;
background-color: #93b2ec;
overflow-x: hidden;
}
.event #date{
font-weight: 100;
color: grey;
font-size: 20%;
}
.hidden-page {
display: none;
background-color: #fdfdfd;
color: rgb(166, 211, 253);
padding: 20px;
}
.button-container {
margin-top: 20px;
}
#closePageButton{
border-radius:100%;
background-color: rgb(176, 202, 235);
color:rgb(2, 23, 51);
font-weight: bolder;
font-family: 'Times New Roman', Times, serif;
}
#openPageButton{
border-radius: 30px;
}
button {
margin: 10px;
padding: 10px 20px;
font-size: 20px;
cursor: pointer;
font-weight: bolder;
background-color: #7da0ba;
color: rgb(1, 15, 29);
border-color: black;
}
.timeline {
margin: 20px auto;
padding: 20px;
max-width: 600px;
background: #032b47;
border-radius: 8px;
text-align: left;
color: rgb(254, 252, 252);
position: relative;
}
.timeline::before {
content: '';
position: absolute;
left: 20px;
top: 20px;
width: 8px;
height: calc(100% - 20px);
background: hwb(205 35% 2%);
}
.event {
margin: 40px 0;
position: relative;
animation: fadeIn 0.8s ease-in;
}
.event p {
margin: 0;
line-height: 1.5;
padding: 10px 0;
}
.event img, .event video {
margin-top: 10px;
max-width: 100%;
height: auto;
border-radius: 8px;
display: block;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.timeline {
padding: 10px;
}
}