-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleforaddDevice.css
More file actions
100 lines (85 loc) · 1.44 KB
/
styleforaddDevice.css
File metadata and controls
100 lines (85 loc) · 1.44 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
/* style for addDevice */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 10px;
padding: 10px;
}
.form-container {
width: 50%;
border: 10px solid #ccc;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
background-color: #ffffff;
position: relative;
}
.logo {
position: absolute;
top: 20px;
left: 35px;
width: 80px; /* Adjust size as needed */
}
.header {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 25px;
}
.header h1 {
text-align: center;
margin: 10px 0;
font-size: 30px;
color: #333;
}
h1 {
text-align: center;
color: #333;
}
form {
display: grid;
gap: 15px;
}
label {
font-weight: bold;
}
input[type="text"],
input[type="number"],
textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
}
textarea {
resize: vertical;
}
select {
background-color: #fff;
border: 1px solid #ddd;
border-radius: 4px;
padding: 10px;
font-size: 16px;
color: #333;
cursor: pointer;
width: 103%;
}
select:focus {
outline: none;
border-color: #28a745;
}
option {
padding: 10px;
}
button {
padding: 10px 15px;
border: none;
border-radius: 4px;
background-color: #28a745;
color: #fff;
font-size: 16px;
cursor: pointer;
}
button:hover {
background-color: #218838;
}