-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (89 loc) · 1.39 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:wght@400;600&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Work Sans', sans-serif;
text-align: center;
}
#logo,
img {
width: 100px;
}
header,
footer {
background-color: black;
width: 100%;
height: 50px;
color: white;
padding-top: 15px;
}
.top {
background-image: url("https://kq-storage.s3.ap-south-1.amazonaws.com/Github/groove-bg%5B1%5D.png");
background-size: 100% 100%;
}
.container {
height: 600px;
padding-top: 5%;
}
h1 {
margin-top: 150px;
font-size: 70px;
}
h2 {
font-size: 40px;
}
p {
font-size: 25px;
}
.button {
background-color: #27AE60;
padding: 10px;
width: 130px;
height: 18px;
margin: auto;
cursor: pointer;
color: white;
border-radius: 5%;
}
.store {
padding: 20px;
}
h2,
table {
margin-top: 2%;
margin-bottom: 2%;
}
table,
th,
tr,
td {
margin: auto;
border: 2px solid black;
border-spacing: 1px;
padding: 10px;
border-collapse: collapse;
font-size: 20px;
}
#mobile {
width: 200px;
text-align: center;
padding: 3px;
}
a {
text-decoration: none;
color: white;
}
th {
background-color: #27AE60;
color: white;
}
tr:hover {
background-color: rgb(227, 226, 226);
}
#quantity {
width: 30px;}
#thanks-text{
display: none;
}