-
Notifications
You must be signed in to change notification settings - Fork 87
/
Copy pathstyle.css
88 lines (79 loc) · 1.87 KB
/
style.css
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
77
78
79
80
81
82
83
84
85
86
87
88
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body {
font-family: 'Poppins', sans-serif;
margin: 0;
padding: 20px;
background-color: #fce4ec;
/* Soft pink background */
color: #424242;
/* Darker text for contrast */
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
flex-direction: column;
}
h1 {
color: #ec407a;
/* Vibrant pink */
text-align: center;
margin-bottom: 20px;
font-weight: 600;
}
input,
button {
font-family: 'Poppins', sans-serif;
border-radius: 30px;
/* More rounded corners for a bubbly effect */
padding: 15px 25px;
border: 2px solid #ff80ab;
/* Pink border */
outline: none;
width: 80%;
max-width: 400px;
box-sizing: border-box;
margin-bottom: 20px;
transition: all 0.3s ease;
}
input {
background-color: #fff;
margin-bottom: 10px;
/* Adjust margin between input and button */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Soft shadow for depth */
}
input:focus {
border-color: #f50057;
/* Brighter pink for focus */
box-shadow: 0 0 0 3px rgba(245, 0, 87, 0.2);
/* Subtle glow effect */
}
button {
background-color: #ab47bc;
/* Playful purple */
color: white;
cursor: pointer;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Consistent shadow with input */
border: none;
/* Remove border for button */
}
button:hover {
background-color: #9c27b0;
/* Slightly darker purple on hover */
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
/* Enhanced shadow for a lifting effect */
}
h5 {
color: #7e57c2;
/* Soft purple */
text-align: center;
font-style: normal;
/* Keep it playful without italics */
margin-top: 20px;
/* Add space above options text */
}
div {
margin: 100px;
font-size: 50px;
}