-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
121 lines (107 loc) · 2.03 KB
/
Copy pathstyles.css
File metadata and controls
121 lines (107 loc) · 2.03 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
min-height: 100vh;
background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
display: flex;
justify-content: center;
align-items: center;
}
.container {
width: 100%;
max-width: 450px;
padding: 20px;
}
.calculator-card {
background: rgba(255, 255, 255, 0.95);
border-radius: 25px;
padding: 35px;
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
animation: slideIn 0.5s ease;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
h1 {
color: #333;
text-align: center;
margin-bottom: 30px;
font-size: 28px;
font-weight: 600;
}
.input-group {
margin-bottom: 20px;
position: relative;
}
label {
display: block;
margin-bottom: 8px;
color: #555;
font-size: 16px;
font-weight: 500;
}
input[type="date"] {
width: 100%;
padding: 12px;
border: 2px solid #ddd;
border-radius: 8px;
font-size: 16px;
transition: all 0.3s ease;
}
input[type="date"]:focus {
outline: none;
border-color: #ff6b6b;
box-shadow: 0 0 5px rgba(255, 107, 107, 0.3);
}
button {
width: 100%;
padding: 14px;
background: #ff6b6b;
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
cursor: pointer;
transition: all 0.3s ease;
}
button:hover {
background: #ff8787;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}
.result-container {
margin-top: 25px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
text-align: center;
color: #333;
font-size: 18px;
line-height: 1.5;
display: none;
}
.result-container.show {
display: block;
animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: scale(0.95);
}
to {
opacity: 1;
transform: scale(1);
}
}