-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
114 lines (100 loc) · 2.18 KB
/
Copy pathstyles.css
File metadata and controls
114 lines (100 loc) · 2.18 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
body {
min-width: 300px;
min-height: 200px;
width: 300px;
margin: 0 auto;
padding: 0;
font-family: Arial, sans-serif;
}
/* General styles */
* {
box-sizing: border-box;
}
/* Input field styles */
input[type="text"] {
background-color: #f0f0f0;
border: none;
border-radius: 25px;
font-family: Arial, sans-serif;
font-size: 16px;
outline: none;
padding: 10px 20px;
transition: all 0.3s ease;
width: 100%;
}
input[type="text"]:focus {
background-color: #ffffff;
box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
/* Button styles */
button {
background-color: #4caf50;
border: none;
border-radius: 25px;
color: #ffffff;
cursor: pointer;
font-family: Arial, sans-serif;
font-size: 16px;
outline: none;
padding: 10px 20px;
text-transform: uppercase;
transition: all 0.3s ease;
}
button:hover {
background-color: #45a049;
}
button:disabled {
background-color: #cccccc;
cursor: not-allowed;
}
#buttonContainer {
display: flex;
}
#mainContent {
padding: 10px;
}
/* Container for the input field and button */
.input-container {
display: flex;
justify-content: space-between;
max-width: 500px;
width: 100%;
}
/* Updated styles for centering the spinner */
#spinnerContainer {
position: absolute; /* Change from relative to absolute */
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex; /* Enable flexbox */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
z-index: 10; /* Ensure it's on top of other content if needed */
}
#spinner {
/* Removed redundant positioning styles (position: absolute and margin) */
border: 4px solid rgba(0, 0, 0, 0.1);
border-left-color: #000;
border-radius: 50%;
width: 24px;
height: 24px;
animation: spin 1s linear infinite;
}
.summary-container {
margin: 10px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
opacity: 0;
transition: opacity 0.5s ease-in-out;
}
.summary-content {
white-space: pre-wrap;
overflow-y: auto;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}