-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadd.css
120 lines (96 loc) · 1.93 KB
/
add.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
body {
background: rgba(250, 249, 249, 0.829);
}
div{
margin-top: 5px;
margin-bottom: 200px;
border: 1px dotted rgb(110, 107, 107);
margin-left: 340px;
margin-right:340px;
}
#inputs-list {
background: rgb(223, 230, 245);
width: 100%;
height: auto;
border: 1px solid white;
padding-top: 20px;
padding-bottom: 20px;
text-align: center;
margin: 0 auto;
}
.addBtn{
font-size: 15px;
color: rgb(255, 254, 254);
background: rgb(223, 230, 245);
margin-top: 6px;
padding: 12px;
border-radius: 2px;
border:none;
}
.fa-list-alt:hover {
background: rgb(231, 247, 246);
}
#myForm{
margin: 0;
}
input {
margin: 0.5%;
font-size: 1.5vw;
border: 1px solid rgb(224, 230, 245);
border-radius: 5px;
}
input[type='text']{
padding: 10px ;
width: 10%;
}
input[type='number']{
padding: 10px;
width: 10%;
}
input:focus {
background-color: rgb(243, 240, 240);
border: none;
}
.grid1 {
display: grid;
grid-template-columns: 2fr;
}
h2 {
color: rgb(155, 152, 152);
}
a,.goBtn{
background-color:rgb(60, 60, 102) ;
border: none;
color: white;
padding: 10px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 4px;
cursor: pointer;
border-radius: 8px;
}
.Btn{
background-color:rgb(60, 60, 102) ;
border: none;
color: white;
padding: 10px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 4px;
cursor: pointer;
border-radius: 8px;
}
input[type=cat], select {
width: 10%;
padding: 10px;
margin: 0.5%;
font-size: 1.5vw;
border: 1px solid rgb(224, 230, 245);
border-radius: 5px;
display: inline-block;
border-radius: 4px;
}