-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (99 loc) · 2 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (99 loc) · 2 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: 'Noto Sans', Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
h1 {
text-align: center;
margin-top: 20px;
color: #2c3e50;
font-size: 2.5em;
}
form {
max-width: 400px;
margin: 50px auto;
padding: 20px;
background-color: #ffffff;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
font-size: 1em;
line-height: 1.6;
display: flex;
flex-direction: column;
gap: 10px;
border: 1px solid #ddd;
box-sizing: border-box;
}
input,select {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1em;
transition: #333 0.5s ease;
box-sizing: border-box;
outline: none;
}
input:focus, select:focus {
border-color: #9a42ce;
box-shadow: 0 0 5px rgba(154, 66, 206, 0.5);
}
.btn-container{
display: flex;
/* justify-content: left; */
gap: 10px;
margin-top: 0px;
}
.btn-container button {
padding: 10px;
background-color: #28a745;
color: #ffffff;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 1em;
width: 120px;
transition: background-color 0.3s ease;
}
.btn-container button[type="submit"]:hover {
background-color: #0f4a08;
}
.btn-container button:disabled {
background-color: #ccc;
cursor: not-allowed;
}
option {
padding: 10px;
font-size: 1em;
color: #333;
background-color: #ffffff;
border: 1px solid #ddd;
border-radius: 4px;
}
label {
font-weight: bold;
margin-bottom: 5px;
color: #4a90e2;
}
button[type="reset"] {
background-color: #dc3545;
color: #ffffff;
border: none;
border-radius: 10px;
cursor: pointer;
font-size: 1em;
width: 120px;
transition: background-color 0.3s ease;
}
button[type="reset"]:hover {
background-color: #c0392b;
}
form.was-validated input:valid {
border-color: green;
box-shadow: 0 0 5px rgba(60, 231, 128, 0.5);
}