-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (49 loc) · 746 Bytes
/
style.css
File metadata and controls
61 lines (49 loc) · 746 Bytes
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
body {
background-color: rgb(231, 231, 231);
}
h4 {
display: inline-block;
font-weight: bold;
}
h5 {
color: rgb(48, 47, 47);
font-weight: bold;
text-decoration: underline;
}
h1 {
margin: 30px auto;
text-align: center;
}
.prod {
border: 2px dotted green;
margin-bottom: 30px;
padding: 15px 1px 15px 1px;
padding-left: 15px;
background-color: white;
transition: transform 0.2s;
}
.record {
margin-top: 30px;
}
.modal h5 {
text-decoration: none;
}
.hidden {
display: none;
}
.alert {
margin-top: 20px;
}
.mouseEnter {
background-color: grey;
color: white !important;
}
.mouseEnter h5 {
color: white !important;
}
.scale {
transform: scale(1.1);
}
.text-white h5 {
color: white !important;
}