-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
63 lines (54 loc) · 1.04 KB
/
Copy pathstyles.css
File metadata and controls
63 lines (54 loc) · 1.04 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
57
58
59
60
61
62
63
body {
margin: 0;
padding: 0;
font-family: "Poppins";
font-weight: bold;
background-color: #74ebd5;
background-image: linear-gradient(90deg, #74ebd5 0%, #9face6 100%);
}
article {
display: grid;
grid-template: 50px auto 20px / 100%;
height: 100vh;
}
header,
footer {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
background-color: white;
}
header {
font-size: 40px;
text-shadow: 2px 2px gray;
}
footer {
font-style: italic;
}
form {
display: grid;
grid-template: auto auto auto auto / 5em 175px;
gap: 5px;
}
main {
padding: 20px 10px 0px 10px;
}
#apr {
width: 105px;
}
button {
padding: 10px 20px;
font-size: 16px;
background-color: lightgray;
border: none;
border-radius: 5px;
cursor: pointer;
transition: transform 0.3s ease, background-color 0.3s ease;
}
button:hover {
transform: scale(
1.1
); /* Increases the size of the button when cursor hovers over it */
background-color: green; /* Changes background color when hovered over */
}