-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (34 loc) · 1.3 KB
/
style.css
File metadata and controls
40 lines (34 loc) · 1.3 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
/* style.css */
body {
font-family: Arial, sans-serif; /* Fallback font family */
text-align: center; /* Center-align text */
margin: 0; /* Remove default margin */
background-color: #FADADD; /* Set background color to light pink */
}
#container {
display: flex; /* Use flexbox layout */
flex-direction: column; /* Stack elements vertically */
align-items: center; /* Center-align items horizontally */
justify-content: center; /* Center-align items vertically */
height: 100vh; /* Make the container full viewport height */
}
#image-container {
/* This container will hold the images */
}
#question {
font-family: 'Sacramento', cursive; /* Apply Sacramento font to the question */
font-size: 52px; /* Set font size for the question */
}
#options {
margin-top: 20px; /* Add space above the options */
}
button {
padding: 10px 20px; /* Set padding for buttons */
margin: 0 10px; /* Set margin around buttons */
font-size: 26px; /* Set font size for buttons */
font-family: 'Sacramento', cursive; /* Apply Sacramento font to the options */
background-color: #FB607F; /* Set button background color */
color: white; /* Set text color to white */
border: none; /* Remove button border */
cursor: pointer; /* Set cursor to pointer on hover */
}