-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
103 lines (91 loc) · 1.87 KB
/
App.css
File metadata and controls
103 lines (91 loc) · 1.87 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
94
95
96
97
98
99
100
101
102
103
/* FitZone.css */
body, html {
margin: 0;
padding: 0;
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(135deg, #ffe0b2, #ffccbc, #f8bbd0);
background-size: 400% 400%;
animation: gradientBG 15s ease infinite;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
@keyframes gradientBG {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
.fitzone-container {
display: flex;
justify-content: center;
align-items: center;
padding: 2rem;
width: 100%;
}
.fitzone-wrapper {
max-width: 800px;
width: 100%;
background: rgba(255, 255, 255, 0.85);
padding: 2rem;
border-radius: 1rem;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
text-align: center;
}
h1 {
font-size: 2.5rem;
color: #d84315;
margin-bottom: 1.5rem;
}
h2 {
font-size: 1.75rem;
color: #5d4037;
margin-bottom: 1rem;
}
.input-group {
display: flex;
gap: 1rem;
flex-wrap: wrap;
justify-content: center;
margin-bottom: 1rem;
}
input, select {
padding: 0.6rem;
border-radius: 0.5rem;
border: 1px solid #ccc;
width: 200px;
font-size: 1rem;
}
button {
background: linear-gradient(to right, #ff9800, #f57c00);
color: white;
padding: 0.6rem 1.2rem;
border: none;
border-radius: 0.5rem;
font-size: 1rem;
cursor: pointer;
transition: transform 0.2s ease, background 0.3s ease;
}
button:hover {
background: linear-gradient(to right, #f57c00, #ef6c00);
transform: scale(1.05);
}
.card {
background: white;
border-radius: 0.5rem;
padding: 1rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
margin-bottom: 0.5rem;
}
.button-group {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 1rem;
}
.chart-canvas {
margin-top: 1rem;
background-color: white;
border-radius: 0.5rem;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}