-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
115 lines (110 loc) · 2.02 KB
/
Copy pathstyles.css
File metadata and controls
115 lines (110 loc) · 2.02 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Roboto", sans-serif;
background-color: #f9f9f9;
color: #333;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
padding: 20px;
}
.wrapper {
display: flex;
justify-content: center;
align-items: center;
height: 100%;
width: 100%;
}
.card {
background-color: white;
width: 100%;
max-width: 500px;
padding: 40px;
border-radius: 10px;
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
text-align: center;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card h1 {
font-size: 2rem;
color: #003E7F;
margin-bottom: 20px;
font-weight: 700;
}
.card p {
font-size: 1.1rem;
margin-bottom: 20px;
color: #1a1a1a;
}
.card form {
display: flex;
flex-direction: column;
align-items: center;
}
.card form textarea {
width: 100%;
padding: 15px;
border: 1px solid #ff7979;
border-radius: 10px;
margin-bottom: 20px;
font-size: 1rem;
color: #333;
background-color: #f1f1f1;
transition: border-color 0.3s ease;
}
.card form textarea:focus {
border-color: #003E7F;
outline: none;
}
.card form button {
padding: 15px 25px;
background-color: #4CA4FF;
color: white;
border: none;
border-radius: 10px;
font-size: 1rem;
font-weight: 500;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.3s ease;
}
.card form button:hover {
background-color: #198aff;
transform: translateY(-2px);
}
.card form button:focus {
outline: none;
}
.card #result {
margin-top: 20px;
}
.card #result a {
color: #003E7F;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.card #result a:hover {
color: #00254c;
}
.loader {
border: 4px solid #f3f3f3; /* Light grey */
border-top: 4px solid #003E7F; /* Blue */
border-radius: 50%;
width: 40px;
height: 40px;
animation: spin 1s linear infinite;
margin: 20px auto; /* Center the loader */
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}