-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
159 lines (139 loc) · 2.68 KB
/
Copy pathstyles.css
File metadata and controls
159 lines (139 loc) · 2.68 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
159
/* Reset universal pentru stiluri consistente */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Segoe UI", Tahoma, sans-serif;
}
body {
background: linear-gradient(135deg, #e0f2ff, #ffffff);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
color: #333;
overflow: hidden;
}
/* Containerul principal pentru aplicație */
.app-container {
width: 100%;
max-width: 600px;
background: #ffffff;
border-radius: 15px;
box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
padding: 40px;
text-align: center;
transition: transform 0.3s ease;
}
.app-container:hover {
transform: scale(1.02);
}
/* Titlu */
.title {
font-size: 2.5rem;
color: #007acc;
margin-bottom: 20px;
font-weight: bold;
text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}
/* Întrebare principală */
.checker h3 {
font-size: 1.5rem;
color: #0056b3;
margin-bottom: 15px;
font-weight: 500;
}
/* Text explicativ */
.info h3,
.history h3 {
font-size: 1.4rem;
color: #0056b3;
margin-top: 20px;
margin-bottom: 10px;
font-weight: 500;
}
p,
li {
font-size: 1.1rem;
line-height: 1.6;
color: #555;
margin-bottom: 10px;
}
/* Input stilizat */
input[type="text"] {
width: 80%;
max-width: 400px;
padding: 12px;
font-size: 1rem;
border: 2px solid #007acc;
border-radius: 8px;
outline: none;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[type="text"]::placeholder {
color: #aaa;
}
input[type="text"]:focus {
border-color: #0056b3;
box-shadow: 0 0 8px rgba(0, 86, 179, 0.3);
}
/* Buton stilizat */
#check-btn {
margin-top: 20px;
padding: 10px 25px;
font-size: 1rem;
color: #ffffff;
background: linear-gradient(135deg, #007acc, #0056b3);
border: none;
border-radius: 25px;
cursor: pointer;
transition: background 0.3s ease, box-shadow 0.2s ease;
}
#check-btn:hover {
background: linear-gradient(135deg, #0056b3, #003d7a);
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}
/* Rezultatul verificării */
#result {
margin-top: 15px;
font-size: 1.2rem;
font-weight: bold;
transition: color 0.3s ease;
}
#result.green {
color: #388e3c;
}
#result.red {
color: #d32f2f;
}
/* Istoric de verificări */
.history ul {
list-style: none;
padding: 0;
margin-top: 10px;
}
.history li {
font-size: 1rem;
padding: 8px;
border-bottom: 1px solid #e0e0e0;
color: #555;
transition: background-color 0.2s ease, color 0.2s ease;
}
.history li:hover {
background-color: #f1f8ff;
color: #007acc;
}
/* Animații */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.app-container {
animation: fadeIn 1s ease;
}