-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
85 lines (67 loc) · 1.04 KB
/
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
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
*{
font-family: 'Poppins', sans-serif;
}
.theme-color{
color: #017a9b;
}
.theme-btn{
color: #017a9b;
background-color: #017a9b;
}
.login-header{
color: #017a9b;
font-weight: 600;
}
.background{
width: 100%;
height: 100vh;
}
.login-btn{
background-color: #017a9b;
color: white;
}
.login-btn:hover{
color: white;
}
/* Dashboard */
.logout-btn{
color: #017a9b;
border: 1px solid #017a9b;
}
.logout-btn:hover{
color: white;
border: 1px solid #017a9b;
background-color: #017a9b;
}
.action-btn{
background-color: #017a9b;
color: white;
}
.action-btn:hover{
background-color: #4da2b9;
color: white;
}
.fa-plus-square{
color: white;
}
/* Add Products */
.form-header{
background-color: #F7F7F7;
color: #017a9b;
font-weight: 700;
font-size: x-large;
}
/* Search Page */
.search-icon{
color: white;
}
.search-btn{
background-color: #017a9b;
}
h1,h2,h3{
font-weight: 700;
}
/* Sell Product */
select:invalid {
color: gray;
}