-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathstyleSheet.css
140 lines (120 loc) · 2.5 KB
/
styleSheet.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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
* {
box-sizing: border-box;
}
.logo {
color: white;
font-size: 40px;
font-family: 'Times New Roman', Times, serif;
}
.logo center img:hover {
width: 300px;
height: 300px;
transition-duration: 2s;
}
body {
background: url(mainBackground.png);
background-size: auto;
background-position: center;
font-family: 'Times New Roman', Times, serif;
color: white;
margin: 0;
padding: 0;
}
.menu-bar {
background-color: rgb(87, 67, 50);
text-align: center;
float: inline-end;
font-size: larger;
}
.menu-bar ul {
display: inline-flex;
list-style: none;
}
.menu-bar ul li {
width: 120px;
margin: 2px;
padding: 5px;
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
}
.menu-bar ul li a {
text-decoration: none;
color: white;
}
.menu-bar ul li:hover {
background-color: rgb(114, 77, 46);
border-radius: 3px;
}
.cat {
width: 900px;
height: 500px;
margin-top: 50px;
display: flex;
margin: 30px;
}
.items {
margin: 10px;
width: 300px;
height: 450px;
box-shadow: -1px 0 10px black;
}
footer {
text-align: center;
padding: 3px;
box-shadow: -1px 0 10px black;
color: white;
display: block;
position: absolute;
bottom: 0;
width: 100%;
height: 170px;
padding-bottom: 10px;
}
.wrapper {
height: 20px;
width: 60px;
display: flex;
align-items: center;
justify-content: center;
background: white;
color: black;
border-radius: 12px;
cursor: pointer;
}
.wrapper span {
width: 100%;
font-weight: 600;
}
.wrapper span.num {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.wrapper span.numH {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.wrapper span.numS {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.wrapper span.numJJ {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.wrapper span.numW {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.wrapper span.numB {
border-right: 2px solid rgba(0, 0, 0, 0.2);
border-left: 2px solid rgba(0, 0, 0, 0.2);
pointer-events: none;
}
.form {
margin: 20px;
}