-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
30 lines (26 loc) · 759 Bytes
/
style.css
File metadata and controls
30 lines (26 loc) · 759 Bytes
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
* {
margin: 0;
padding: 0;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
background-color: #FBAB7E;
background-image: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%);
background-attachment: fixed;
text-align: center;
}
h2 {
margin-top: 50px; /* Adjusted margin for smaller screens */
text-align: center;
color: black;
font-size: 2em; /* Adjusted font size for smaller screens */
}
#msg {
font-weight: bold;
}
#score {
font-size: 1.5em; /* Adjusted font size for smaller screens */
color: black;
}
#gameboard {
margin: 10px; /* Adjusted margin for smaller screens */
border: 2px solid; /* Adjusted border size for smaller screens */
}