-
Notifications
You must be signed in to change notification settings - Fork 0
/
iedit.css
144 lines (121 loc) · 2.37 KB
/
iedit.css
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
body {
background-color: #f5f7f7;
font-family: "Nunito Sans", sans-serif;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: 0;
}
.icontain {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: white;
width: 80%;
position: relative;
margin: auto;
border-radius: 20px;
padding: 40px 0 30px 0;
}
fieldset {
justify-content: center;
align-items: center;
padding: 10px;
display: flex;
flex-direction: column;
justify-content: center;
position: relative;
width: 80%;
border-radius: 10px;
border: 2px solid #dddfdd;
margin-bottom: 20px;
}
.infocontain {
padding-top: 15px;
padding-bottom: 20px;
}
legend {
font-size: 17px;
color: #929292;
}
.inp {
width: 98%;
padding: 8px;
margin: 6px 0 6px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 20px;
background-color: #fcfcfc;
}
.inp:hover:not(#btn, .readonly) {
border: 1px solid #757575;
}
.inp:focus, #info:focus {
outline: none;
outline: solid rgb(55 112 255) 2px;
background-color: white;
}
.inp, #info {
font-size: 20px;
}
#info {
border-radius: 5px;
height: 60vh;
width: 98%;
background-color: #fcfcfc;
}
.btncontain {
position: relative;
display: flex;
justify-content: space-around;
align-items: center;
}
.btn {
color: white;
border: none;
cursor: pointer;
transition: all 1s;
width: 100%;
padding: 8px;
margin: 6px 0 6px 0;
box-sizing: border-box;
border: 1px solid #ccc;
border-radius: 4px;
font-size: 20px;
position: relative;
top: 20px;
height: 40px;
background-color: rgb(55 112 255);
width: 10%;
}
#chng {
width: 100%;
margin: 10px 0 0 0;
}
.btn:hover {
background-color: rgb(55 112 255);
transform: translate(0, -3px);
transition: all 0.5s;
}
#edit {
height: 40px;
position: relative;
top: -1px;
background-color: rgb(55 112 255);
width: 200px;
}
#edit:hover {
background-color: rgb(11, 21, 165);
}
#delete {
background-color: rgb(255, 71, 71);
width: 200px;
position: relative;
top: 6px;
}
#delete:hover {
background-color: rgb(185, 0, 0);
}