-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathedit.css
49 lines (45 loc) · 835 Bytes
/
edit.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
#editDiv{
border: 2px dotted grey;
border-radius: 8px;
width: 500px;
margin: auto;
text-align: center;
padding: 10px;
background-color: #e8f0fe;
}
h3{
font-family: 'Inter', sans-serif;
}
label {
font-family: 'Inter', sans-serif;
font-size: 14px;}
input{
height: 25px;
outline: none;
border: 1px solid grey;
width: 200px;
border-radius: 5px;
padding: 5px;
font-family: 'Inter', sans-serif;
}
select{
height: 25px;
outline: none;
border: 1px solid grey;
width: 200px;
border-radius: 5px;
padding: 5px;
font-family: 'Inter', sans-serif;
}
button{
border: none;
background-color: #cc005f;
color: white;
width: 200px;
height: 25px;
}
button:hover{
background-color: black;
padding: 10px;
height: 40px;
}