-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathstyle.css
73 lines (65 loc) · 1.44 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
body {
font-family: 'Poppins', sans-serif;
background-color: #e0f7fa;
/* Light cyan */
text-align: center;
margin: 0;
padding: 30px;
}
h1 {
font-family: 'Bebas Neue', cursive;
font-size: 48px;
/* Larger font size for headings */
color: #00796b;
/* Teal */
margin-bottom: 30px;
}
img.pop-icon {
width: 150px;
margin: 20px auto;
}
p {
color: #004d40;
/* Darker teal for contrast */
margin: 10px 0;
}
input,
button {
margin: 10px 0;
padding: 10px;
border-radius: 20px;
/* More rounded edges for a modern look */
font-family: 'Poppins', sans-serif;
transition: all 0.3s ease;
/* Smooth transition for interactions */
}
input {
border: 2px solid #00796b;
/* Teal border for inputs */
width: 60%;
box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
/* Inner shadow for depth */
}
button {
background-color: #ff5722;
/* Bright orange */
color: white;
border: none;
cursor: pointer;
font-weight: 600;
/* Poppins semi-bold for button text */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
/* Soft shadow for depth */
}
button:hover {
background-color: #e64a19;
/* Darker orange for hover effect */
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
/* Deeper shadow for hover effect */
}
div.content {
margin-top: 30px;
padding-top: 20px;
border-top: 2px dashed #00796b;
/* Teal dashed border for separation */
}