-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 1.01 KB
/
style.css
File metadata and controls
45 lines (39 loc) · 1.01 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
#button-container {
text-align: center;
margin-top: 10px;
margin-bottom: 20px;
}
#content {
text-align: center;
margin-top: 20px;
}
img {
max-width: 100%;
height: 600px;
object-fit: contain; /* Makes the image scale to fit the size, might add borders */
display: block; /* Remove extra space below the image */
margin: 0 auto; /* Center align if not full width */
}
#className {
font-size: 28px; /* Larger font size for class name */
font-weight: bold; /* Bold text for emphasis */
margin-top: 10px; /* Space above the class name */
}
#displayText {
font-size: 24px; /* Larger font size for readability */
margin-top: 10px; /* Space between the class name and text */
color: #333; /* Dark grey color for text */
}
button {
font-size: 18px;
padding: 15px 30px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #0056b3;
}