-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
158 lines (144 loc) · 3 KB
/
style.css
File metadata and controls
158 lines (144 loc) · 3 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
}
/* 🌈 Background */
body {
background: linear-gradient(135deg, #000000, #6eace2, #98e2e6);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
padding: 20px;
overflow-x: hidden;
}
/* 🧾 Main Container */
.main {
background: rgba(0, 0, 0, 0.8);
width: 100%;
max-width: 460px;
border-radius: 16px;
padding: 35px 28px;
box-shadow: 0 10px 30px rgba(0, 255, 255, 0.2);
animation: fadeIn 0.8s ease;
backdrop-filter: blur(6px);
border: 1px solid rgba(255, 255, 255, 0.1);
}
.main h1 {
text-align: center;
color: #00f2fe;
margin-bottom: 25px;
font-size: 1.9rem;
text-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
}
/* 🧍 Form Layout */
#stdForm div {
display: flex;
flex-direction: column;
margin-bottom: 15px;
}
/* form div {
display: flex;
flex-direction: column;
margin-bottom: 15px;
} */
label {
font-weight: 600;
margin-bottom: 6px;
color: #c9e9f6;
}
input {
padding: 10px 12px;
border: 2px solid transparent;
border-radius: 6px;
transition: all 0.3s ease;
font-size: 1rem;
background: rgba(255, 255, 255, 0.1);
color: white;
}
input::placeholder {
color: rgba(255, 255, 255, 0.6);
}
input:focus {
outline: none;
border-color: #00f2fe;
box-shadow: 0 0 10px rgba(0, 242, 254, 0.6);
background: rgba(255, 255, 255, 0.15);
}
/* 🧠 Buttons */
button {
width: 100%;
padding: 12px 0;
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: bold;
cursor: pointer;
color: white;
background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
transition: all 0.3s ease;
margin-top: 8px;
}
button:hover {
background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 255, 200, 0.3);
}
/*
#showData {
background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
color: #333;
}
#showData:hover {
background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
color: #fff;
} */
/* 🧾 Output Section */
#output {
display: none;
margin-top: 1.5rem;
background: rgba(0, 0, 0, 0.6);
border-radius: 10px;
padding: 1rem;
min-height: 70px;
font-size: 1rem;
line-height: 1.5;
color: #dff9fb;
border: 1px solid rgba(0, 242, 254, 0.3);
animation: fadeIn 0.6s ease-in-out;
white-space: pre-wrap;
word-wrap: break-word;
}
/* pre {
white-space: pre-wrap;
word-wrap: break-word;
} */
/* 💡 Animations */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* 📱 Responsive Design */
@media (max-width: 480px) {
.main {
padding: 25px 20px;
}
.main h1 {
font-size: 1.6rem;
}
input {
font-size: 0.95rem;
}
button {
font-size: 0.95rem;
}
}