forked from ANSHIKA-26/WordWise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
35 lines (35 loc) · 674 Bytes
/
styles.css
File metadata and controls
35 lines (35 loc) · 674 Bytes
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
.form-popup {
display: none; /* Initially hidden */
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
border: 1px solid #ccc;
padding: 20px;
background-color: white;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
z-index: 1000;
}
.form-container {
width: 300px;
}
.btn {
display: block;
width: 100%;
padding: 10px;
margin: 10px 0;
background-color: #007bff;
color: white;
border: none;
cursor: pointer;
}
.btn.cancel {
background-color: #dc3545; /* Red for cancel button */
}
.toggle-button {
cursor: pointer;
margin-left: 5px;
}
.form-group {
margin-bottom: 15px;
}