-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
47 lines (47 loc) · 828 Bytes
/
style.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
.navbar {
background-color: #181818;
justify-content: space-between;
}
h1 {
padding: 15px;
font-size: 30px;
color: white;
}
.btn{
padding: 15px;
font-size: 20px;
background-color: black;
border-radius: 30px;
border: 1px solid black;
}
.form-control {
padding: 30px;
font-size: 20px;
border: 1px solid black;
border-radius: 30px;
background-color: #c3c3bf;
}
.table
{
background-color: #c3c3bf;
font-weight: bold;
text-align: center;
font-size: 20px;
}
thead{
background-color: #787575;
}
.delBtn{
border-radius: 20px;
border: 1px solid black;
background-color: gray;
}
/* .......................................... */
@media only screen and (max-width: 768px) {
.navbar {
width: 930px;
}
.input-group {
width: 470px;
}
}