-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
98 lines (92 loc) · 1.34 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
* {
font-family: "Press Start 2P", cursive;
font-size: small;
}
:root {
--light_grey: #d3d3d3;
--golden: #9e8a29ff;
--fixpadding: 15px 15px;
}
body {
background-color: var(--light_grey);
}
p {
margin-left: 30px;
margin-right: 30px;
}
.foot {
height: 50px;
text-align: center;
line-height: 50px;
}
.headerimg {
margin-left: auto;
margin-right: auto;
display: block;
margin-top: 15px;
margin-bottom: 15px;
height: 150px;
}
.vgaImage {
width: 200px;
margin-left: 15px;
margin-right: 5px;
}
.coinsImage {
width: 100px;
margin-left: 15px;
margin-right: 5px;
}
.smallImg {
width: 30px;
float: left;
margin-left: 5px;
margin-right: 5px;
}
.manuf {
width: 400px;
display: block;
margin-left: auto;
margin-right: auto;
}
.banner {
background-color: var(--golden);
margin-bottom: 15px;
text-align: center;
font-size: large;
}
span {
margin-left: 15px;
}
th {
width: 150px;
}
.flexit {
display: flex;
}
code {
padding: var(--fixpadding);
}
@media only screen and (min-width: 1240px) {
p,
.banner,
.lists,
.nes-table-responsive,
div {
padding: 0 20vw;
}
}
@media only screen and (max-width: 600px) {
.manuf {
width: 80%;
margin-left: auto;
margin-right: auto;
}
.flexit {
display: block;
padding: var(--fixpadding);
}
code {
display: block;
}
}