-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
72 lines (56 loc) · 1.49 KB
/
style.css
File metadata and controls
72 lines (56 loc) · 1.49 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
body {
font-family: "Comic Sans MS", cursive, sans-serif;
margin: 0;
padding: 0;
background-color: #f2c5e0; /* Soft pink background */
}
header {
background-color: #ff80bf; /* Light pink header */
color: #fff;
padding: 40px 20px;
text-align: center;
border-bottom: 3px solid #ff3399; /* Pink border */
}
p {
color: #451481; /* Darker text color */
line-height: 1.8;
}
a {
color: #ff3399; /* Pink link color */
text-decoration: none;
}
.container {
border: 10px solid #ff3399;
max-width: 700px;
margin: 50px auto 30px;
padding: 20px;
border-radius: 10px;
}
input[type="text"] {
padding: 10px; /* Add padding to make it look more spacious */
border: 2px solid #ff3399; /* Add a border */
border-radius: 5px; /* Add rounded corners */
font-size: 16px; /* Increase font size */
width: 70%; /* Adjust width */
margin-left: 25px;
margin-bottom: 30px; /* Add some space between the input and the button */
}
button {
margin-left: 15px;
padding: 10px 20px; /* Add padding to make it look larger */
background-color: #ff3399; /* Pink background */
color: #fff; /* White text color */
border: none; /* Remove border */
border-radius: 5px; /* Add rounded corners */
font-size: 16px; /* Increase font size */
cursor: pointer; /* Add pointer cursor */
}
button:hover {
background-color: #ff80bf;
}
img{
position: relative;
top: 50%;
margin: auto;
display: block;
}