-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
109 lines (91 loc) · 1.78 KB
/
styles.css
File metadata and controls
109 lines (91 loc) · 1.78 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
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 50px;
}
#app {
max-width: 600px;
margin: 0 auto;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
position: relative;
}
#youtubeIcon {
position: absolute;
top: 10px;
right: 10px;
}
#youtubeIcon img {
width: 80px;
height: 80px;
}
h1 {
color: #ff6347; /* Tomato */
}
p {
color: #008080; /* Teal */
margin-bottom: 20px;
}
input {
width: 80%;
padding: 10px;
margin-bottom: 10px;
}
button {
color: white;
padding: 12px 18px;
border: none;
border-radius: 4px;
cursor: pointer;
transition: background-color 0.3s ease;
margin: 5px;
}
button:nth-child(odd) {
background-color: #32cd32; /* LimeGreen */
}
button:nth-child(even) {
background-color: #ff4500; /* OrangeRed */
}
button:hover {
background-color: #228b22; /* ForestGreen on hover */
}
#wordChain {
margin-top: 20px;
font-size: 18px;
}
#scoreBadge {
position: relative;
text-align: right;
}
#score {
font-size: 24px;
font-weight: bold;
color: #4b0082; /* Indigo */
}
#badge {
display: inline-block;
vertical-align: middle;
margin-left: 10px;
width: 40px;
height: 40px;
background: url('path/to/your/badge-image.png') no-repeat center center;
background-size: cover;
}
#credits {
margin-top: 30px;
}
#credits p {
color: #2f4f4f; /* DarkSlateGray */
font-size: 14px;
}
#credits a {
color: #4169e1; /* RoyalBlue */
text-decoration: none;
}
/* Additional media query for mobile devices */
@media (max-width: 768px) {
body, h1, p, input, button, #score, #credits p, #credits a {
font-family: Arial, sans-serif !important; /* Ensuring override */
}
}