-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
44 lines (39 loc) · 835 Bytes
/
style.css
File metadata and controls
44 lines (39 loc) · 835 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
html,
body {
height: 100%;
margin: 0;
font-family: Arial, sans-serif;
}
body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background: linear-gradient(to bottom, darkcyan, darkgray);
/* Gradient background */
}
.logo {
margin-bottom: 24px;
}
.divClass {
text-align: center;
color: #ffffff;
/* White text color */
font-size: 2.5rem;
/* Adjusted font size */
font-weight: 700;
/* Bold text */
background: rgba(0, 0, 0, 0.6);
/* Semi-transparent background */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
.divClass div {
margin-bottom: 10px;
}
.divClass div:last-child {
margin-bottom: 0;
font-size: 1.5rem;
/* Smaller font size for the second line */
}