forked from finbogo-org/react-form-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpreview.css
More file actions
52 lines (44 loc) · 959 Bytes
/
preview.css
File metadata and controls
52 lines (44 loc) · 959 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Preview.css */
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
border-radius: 8px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
background-color: #f9f9f9;
}
.container h1 {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
font-weight: bold;
color: #333;
}
.react-form {
margin-top: 20px;
}
.button {
background-color: #007bff;
color: white;
padding: 10px 15px;
border: none;
border-radius: 5px;
cursor: pointer;
margin: 10px 0;
}
button:hover {
background-color: #0056b3;
}
.react-form-button.react-form-button-submit {
background-color: #28a745 !important;
color: white !important;
padding: 10px 20px !important;
border: none !important;
border-radius: 5px !important;
cursor: pointer !important;
margin: 10px 0 !important;
transition: background-color 0.3s ease !important;
}
.react-form-button.react-form-button-submit:hover {
background-color: #218838 !important;
}