-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
154 lines (134 loc) · 2.71 KB
/
styles.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url('NEE.jpeg');
background-size: cover;
background-position: center;
background-attachment: fixed;
background-repeat: no-repeat;
min-height: 100vh;
padding: 40px 20px;
font-family: Arial, sans-serif;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.input-card, #tripPlanOutput {
background-color: rgba(255, 255, 255, 0.92);
backdrop-filter: blur(8px);
-webkit-backdrop-filter: blur(8px);
border-radius: 15px;
overflow: hidden;
margin-bottom: 20px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.card-header {
background-color: #f4b942;
color: white;
padding: 15px;
font-weight: bold;
text-align: center;
font-size: 1.2em;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
h1 {
text-align: center;
color: #2c3e50;
margin-bottom: 2rem;
}
.form-group {
margin-bottom: 1.5rem;
}
label {
display: block;
margin-bottom: 0.5rem;
color: #34495e;
font-weight: bold;
}
input, select {
width: 100%;
padding: 0.8rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
}
select[multiple] {
height: 120px;
}
button {
display: block;
width: 100%;
padding: 1rem;
background-color: #3498db;
color: white;
border: none;
border-radius: 4px;
font-size: 1.1rem;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #2980b9;
}
.hidden {
display: none;
}
.day-plan {
margin: 1.5rem 0;
padding: 1rem;
background-color: white;
border-radius: 6px;
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.day-plan h3 {
color: #2c3e50;
margin-bottom: 1rem;
}
.activity-item {
display: flex;
align-items: center;
margin: 0.5rem 0;
}
.activity-time {
min-width: 100px;
font-weight: bold;
color: #34495e;
}
.budget-section {
margin-top: 2rem;
padding: 1rem;
background-color: #e8f4f8;
border-radius: 6px;
}
.budget-item {
display: flex;
justify-content: space-between;
margin: 0.5rem 0;
}
.submit-btn {
background-color: #f4b942;
border: none;
color: white;
padding: 15px 30px;
font-size: 1.2em;
border-radius: 8px;
cursor: pointer;
width: 100%;
max-width: 300px;
margin: 20px auto;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.submit-btn:hover {
background-color: #e5aa35;
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}