-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (66 loc) · 1.3 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
.beautiful-button {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
font-weight: bold;
color: #fff;
background-color: #4CAF50;
border-radius: 5px;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
display: block;
margin: 0 auto;
}
.beautiful-button:hover {
background-color: #3E8E41;
}
.container {
text-align: center;
}
.paragraph {
font-family: 'Kalam', cursive;
font-size: 16px;
line-height: 1.5;
text-align: justify;
margin: 0 auto;
max-width: 800px;
}
.paragraph p {
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
background-color: #f5f5f5;
}
footer {
text-align: center;
background-color: #f5f5f5;
padding: 10px;
}
footer a {
color: #555;
text-decoration: none;
}
.play-button {
display: inline-block;
background-color: #4285F4;
border: none;
border-radius: 4px;
color: #FFFFFF;
padding: 8px 16px;
font-size: 16px;
font-weight: bold;
display: flex;
align-items: center;
}
.play-button i {
font-size: 20px;
margin-right: 8px;
}
.play-button:hover {
cursor: pointer;
background-color: #3367D6;
}
.button-container {
text-align: center;
}