-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
56 lines (50 loc) · 1.36 KB
/
Copy pathstyle.css
File metadata and controls
56 lines (50 loc) · 1.36 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
body{
padding: 25px;
}
.title {
color: #5C6AC4;
}
.a {
font-family: 'Roboto', sans-serif;
font-family: Arial, sans-serif;
color: #ffffff; /* Optional: Change hyperlink color */
text-decoration: none;
font-size: 40px;
}
.arial {
font-family: 'Arial', sans-serif; /* Set font to Arial */
}
h1 {
font-family: 'Arial', sans-serif; /* Set font to Arial */
color: #5C6AC4; /* Change text color as needed */
font-size: 40px; /* Set desired font size */
text-align: center;
}
.image-container {
position: relative;
display: inline-block;
}
.image-container img {
transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth transition */
}
.image-container img:hover {
transform: scale(1.1); /* Scale image on hover */
opacity: 0.8; /* Change opacity on hover */
}
.image-container {
position: relative;
display: flex; /* Use flexbox for centering */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
margin: 40px;
}
.overlay {
position: absolute;
bottom: 0; /* Align to the bottom */
right: 10%;
width: auto; /* Adjust width */
color: #ffffff; /* Change text color */
font-size: 40px; /* Adjust font size */
text-align: right; /* Center text */
padding: 10px; /* Optional: padding */
}