-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
93 lines (78 loc) · 1.33 KB
/
Copy pathstyle.css
File metadata and controls
93 lines (78 loc) · 1.33 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
:root {
--color-primary: #a451a9;
--color-accent: #FFB81C;
--color-bg: #fff;
--color-text: #222;
--font-sans: 'Montserrat', Arial, sans-serif;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-sans);
background-color: var(--color-bg);
color: var(--color-text);
line-height: 1.6;
}
header {
background-color: var(--color-primary);
color: white;
text-align: center;
padding: 2rem 1rem;
}
main {
padding: 3rem 1rem;
max-width: 800px;
margin: auto;
}
.form-section h2 {
color: var(--color-primary);
margin-bottom: 1rem;
}
form {
display: flex;
flex-direction: column;
gap: 1rem;
}
label {
display: flex;
flex-direction: column;
}
input, select, button {
padding: 0.75rem;
border-radius: 4px;
border: 1px solid #ccc;
width: 100%;
}
button {
background-color: var(--color-primary);
color: white;
border: none;
cursor: pointer;
}
button:hover {
background-color: #8b3fa3;
}
#price-result {
margin-top: 2rem;
font-size: 1.25rem;
font-weight: bold;
color: var(--color-primary);
}
footer {
background-color: var(--color-primary);
color: white;
text-align: center;
padding: 2rem 1rem;
}
.fade-up {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
}
.fade-up.visible {
opacity: 1;
transform: translateY(0);
}