-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
124 lines (110 loc) · 2.11 KB
/
style.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
120
121
122
123
124
body {
font-family: Arial, sans-serif;
background-color: #fd9e59;
display: flex;
flex-direction: column;
justify-content: flex-start;
}
/* Timeline */
.timeline {
position: relative;
max-width: 75%;
margin: 0 auto;
}
/* Timeline Line */
.timeline::after {
content: '';
position: absolute;
width: 6px;
background-color: #5B2F00;
top: 0;
bottom: 0;
left: 40px;
margin-left: -3px;
}
/* Timeline Content */
.timeline-event {
padding: 10px;
position: relative;
background-color: rgba(255, 255, 255, 0.4);
border: 1px solid #ddd;
border-radius: 4px;
width: 100%;
margin-bottom: 100px;
left: 60px;
}
/* Timeline Point */
.timeline-event::before {
content: '';
position: absolute;
width: 12px;
height: 12px;
background-color: #F2A900;
border: 2px solid #5B2F00;
border-radius: 50%;
top: 15px;
left: -30px;
z-index: 1;
}
/* Text */
.website-title {
font-family: "Noto Sans Thai Looped", sans-serif;
font-optical-sizing: auto;
font-weight: 600;
font-size: 72px;
font-style: normal;
text-align: center;
}
.website-description {
font-family: "Noto Sans Thai Looped", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-size: 48px;
font-style: normal;
text-align: start;
padding: 20px;
}
/* Change Language Button */
button {
margin: 8px;
padding: 8px 16px;
font-size: 24px;
cursor: pointer;
border: 1px solid transparent;
border-radius: 4px;
background-color: transparent;
}
button:hover {
background-color: #F2A900;
}
/* Banner */
.banner-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
width: 100%;
}
.banner {
width: 70%;
height: auto;
}
.change-language-container {
display: flex;
justify-content: end;
}
/* Footer */
.footer {
text-align: center;
padding: 10px 0;
background-color: #f8f8f8;
width: 100%;
bottom: 0;
left: 0;
}
.footer a {
color: #007bff;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}