-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyles.css
More file actions
76 lines (68 loc) · 1.35 KB
/
styles.css
File metadata and controls
76 lines (68 loc) · 1.35 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
64
65
66
67
68
69
70
71
72
73
74
75
76
body {
margin: 0;
font-family: Arial, sans-serif;
background-color: #29ba6a;
color: #333;
}
.logo {
width: 180px;
height: auto;
}
form {
box-sizing: border-box;
padding: 2rem;
border-radius: 1rem;
background-image: linear-gradient(rgba(0, 0, 0.2, 0.55), rgba(0, 0, 0, 0.55)), url(blog.jpeg);
border: 4px solid hsl(0, 0%, 90%);
grid-template-columns: 1fr 1fr;
gap: 2rem;
padding-bottom: 20px;
}
.container {
margin: 0 auto;
max-width: 600px;
background-color: #fff;
padding: 20px;
}
h1 {
font-size: 36px;
margin-bottom: 20px;
}
p {
color: #ddd;
}
/* Styling for the radio buttons */
input[type="radio"] {
display: none;
color: white;
border-bottom: 2px solid #ddd;
transition: border-bottom 0.3s ease-in-out;
}
/* Styling for the radio button labels */
label {
display: inline-block;
margin: 10px;
padding: 10px;
font-size: 16px;
border: 2px solid #ccc;
border-radius: 5px;
cursor: pointer;
color: aliceblue;
}
/* Styling for the selected radio button label */
input[type="radio"]:checked + label {
background-color: #98d1dc;
color: #fff;
}
form {
animation: slide-in 1s ease-out;
}
@keyframes slide-in {
from {
opacity: 0;
transform: translateY(-50px);
}
to {
opacity: 1;
transform: translateY(0);
}}