-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (123 loc) · 2.37 KB
/
Copy pathstyle.css
File metadata and controls
141 lines (123 loc) · 2.37 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
* {
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
margin: 0;
padding: 0;
background: linear-gradient(135deg, #e6f7f6, #f0fdfa);
color: #134e4a;
}
/* Container */
.container {
max-width: 1050px;
margin: 60px auto;
background: #ffffff;
padding: 45px;
border-radius: 18px;
box-shadow: 0 15px 40px rgba(15, 118, 110, 0.18);
animation: fadeIn 0.9s ease;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(35px); }
to { opacity: 1; transform: translateY(0); }
}
/* Titles */
h1 {
text-align: center;
color: #0f766e;
font-weight: 700;
margin-bottom: 6px;
}
h2 {
text-align: center;
font-weight: 500;
color: #14b8a6;
margin-top: 0;
}
.description {
text-align: center;
margin: 22px auto 45px;
max-width: 720px;
color: #475569;
line-height: 1.7;
font-size: 15px;
}
/* Inputs */
.inputs {
display: flex;
gap: 30px;
margin-bottom: 45px;
}
.box {
flex: 1;
padding: 28px 22px;
border-radius: 16px;
text-align: center;
position: relative;
background: #ffffff;
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.box::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 6px;
width: 100%;
background: #14b8a6;
border-radius: 16px 16px 0 0;
}
.box:hover {
transform: translateY(-8px);
box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.box h3 {
margin-bottom: 18px;
font-weight: 600;
color: #0f766e;
}
.box input {
width: 85%;
padding: 12px;
border-radius: 10px;
border: 1px solid #cbd5e1;
font-size: 15px;
}
.box input:focus {
outline: none;
border-color: #14b8a6;
box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.25);
}
/* Button */
.btn-container {
text-align: center;
}
button {
background: linear-gradient(135deg, #14b8a6, #0f766e);
color: #ffffff;
padding: 15px 46px;
border: none;
border-radius: 35px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
}
button:hover {
transform: scale(1.05);
box-shadow: 0 14px 30px rgba(15, 118, 110, 0.45);
}
/* Result */
#result {
text-align: center;
margin-top: 30px;
font-size: 18px;
font-weight: 600;
}
/* Responsive */
@media (max-width: 768px) {
.inputs {
flex-direction: column;
}
}