-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (94 loc) · 1.42 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
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
text-align: center;
}
body {
background-color: rgb(48,6,48);
color: white;
font-family: Arial;
font-size: 1em;
}
h1 {
font-size: 2.5em;
margin: .6em 0;
}
a {
color: rgb(238,130,238);
text-decoration: none;
}
li {
background-color: rgb(255,215,0);
border: 1px solid rgb(255,215,0);
border-radius: 18px;
cursor: default;
color: rgb(30,4,30);
display: inline-block;
height: 36px;
width: 36px;
line-height: 2.3;
list-style-type: none;
margin-right: 5px;
vertical-align: baseline;
}
button {
background-color: rgb(229,61,229);
border: 1px solid rgb(229,61,229);
border-radius: 6px;
color: rgb(30,4,30);
cursor: pointer;
font-size: 1em;
padding: 6px;
width: 100px;
}
button:hover {
background-color: rgb(236,113,236);
}
footer {
margin: 0 2em 3em;
}
#result, #btns {
margin: auto;
width: 300px;
}
#btns {
padding: 1.6em 0;
}
#stop-btn, #reset-btn {
display: none;
}
#coupon {
padding: 0 0 2.3em;
}
#coupon-tab {
margin: auto;
width: 300px;
}
#coupon-tab, #coupon-tab th, #coupon-tab tr, #coupon-tab td {
border: 1px solid rgb(245,182,245);
border-collapse: collapse;
}
#coupon-tab th {
padding: 10px;
}
#coupon-tab td {
padding: 5px;
}
#coupon-tab th {
background-color: rgb(245,182,245);
color: rgb(30,4,30);
text-align: justify;
}
#number-of-matches {
text-align: right!important;
}
.btn {
cursor: pointer;
display: block;
height: 30px;
line-height: 1.8;
width: 30px;
}
.btn:hover {
background-color: rgb(82,11,82)!important;
}