-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (60 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
60 lines (60 loc) · 1.28 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
body {
background-color: #f4f7f9;
font-family: sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0; }
.container {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
width: 800px; }
h1 {
text-align: center;
margin-bottom: 30px; }
.row {
display: flex;
gap: 20px;
margin-bottom: 20px; }
.col {
flex: 1; }
label {
display: block;
font-weight: bold;
margin-bottom: 5px; }
input[type="text"], select, textarea {
width: 100%;
padding: 8px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box; }
.buttons {
text-align: center;
margin-top: 20px; }
.btn-reg {
background: #007bff;
color: white;
border: none;
padding: 10px 30px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
margin-right: 10px; }
.btn-clear {
background: #dc3545;
color: white;
border: none;
padding: 10px 30px;
border-radius: 5px;
cursor: pointer;
font-size: 16px; }
.alert {
background: #d4edda;
color: #155724;
padding: 10px;
margin-bottom: 15px;
border-radius: 5px;
text-align: center; }