-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (98 loc) · 2.11 KB
/
style.css
File metadata and controls
118 lines (98 loc) · 2.11 KB
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
*{
font-family: 'Open Sans', sans-serif;
}
.cls-str{
display: grid;
grid-template-columns: 5% 90% 5%;
}
.head-cls{
display:flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: space-around;
}
.title{
display: flex;
flex-wrap: wrap;
flex-direction: row;
align-items: center;
justify-content: space-around;
}
.form-sec{
display: grid;
grid-template-rows: repeat(1fr);
justify-content: center;
grid-gap: 0.3rem;
}
.main-table{
display: flex;
flex-wrap: wrap;
flex-direction: column;
}
.row-data{
margin-top: 30px;
display: grid;
grid-template-columns:repeat(6,1fr);
align-content: center;
margin-bottom: 1px;
border-bottom: 1px solid rgb(135, 117, 117);
padding-bottom: 0.5rem;
text-align: center;
}
#update-form,#edit-form{
display: none;
}
.btn {
background:linear-gradient(to bottom, #c7b645 5%, #c1bada 100%);
background-color:#c7b645;
border-radius:42px;
border:2px solid #0e46ff;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:16px;
font-weight:bold;
padding:5px 15px;
text-decoration:none;
text-shadow:-1px 2px 0px #141fa1;
}
.btn:hover {
background:linear-gradient(to bottom, #3400e0 5%, #c7b645 100%);
background-color:#3400e0;
}
.alert {
display: none;
padding: 20px;
background-color: #f44336; /* Red */
color: white;
margin-bottom: 15px;
}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
.closebtn:hover {
color: black;
}
.input {
padding: 7px;
font-size: 14px;
border-width: 2px;
border-color: #CCCCCC;
background-color: #cde8dc;
color: black;
border-style: double;
border-radius: 12px;
box-shadow: -6px 4px 14px rgba(66,66,66,.92);
text-shadow: 0px 0px 5px rgba(66,66,66,.75);
}
.row-head{
font-weight: bolder;
}