-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
99 lines (87 loc) · 1.67 KB
/
Copy pathstyles.css
File metadata and controls
99 lines (87 loc) · 1.67 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
body {
font-family: Arial, sans-serif;
background-color: #f2f2f2;
}
.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
color: #333;
font-size: 28px;
}
.form-group {
margin-bottom: 20px;
}
label {
display: block;
margin-bottom: 5px;
color: #333;
}
input[type="text"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
resize: vertical;
}
button {
display: block;
width: 100%;
padding: 10px;
background-color: #4CAF50;
border: none;
color: #fff;
text-align: center;
font-size: 16px;
cursor: pointer;
border-radius: 4px;
}
button:hover {
background-color: #45a049;
}
/* Loading Spinner Container */
#loading-spinner {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
justify-content: center;
align-items: center;
}
/* Spinner */
.spinner-border {
width: 3rem;
height: 3rem;
border-width: 0.25rem;
color: #ffffff;
}
.warning-container {
margin: 20px 0;
padding: 15px;
border: 1px solid #f1c40f;
background-color: #fdfd96;
border-radius: 5px;
color: #7f8c8d;
}
.warning-container h2 {
margin: 0 0 10px;
font-size: 1.5rem;
}
.warning-container a {
color: #2980b9;
text-decoration: none;
}
.warning-container a:hover {
text-decoration: underline;
}