-
Notifications
You must be signed in to change notification settings - Fork 5
/
merch.css
104 lines (84 loc) · 1.49 KB
/
merch.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
#main {
padding-top: 60px;
}
.content.merch {
margin-right: 10%;
margin-left: 10%;
}
.content.merch p {
font-size: 1em;
}
.merch-grid {
display: grid;
grid-template-columns: 0.8fr 1fr;
}
.merch-image {
width: 100%;
height: auto;
margin-top: 10px;
border-radius: 0.2em;
}
.merch-col:first-of-type {
margin-right: 30px;
}
.merch-col:last-of-type, .merch-col:nth-of-type(2) {
padding-top: 10px;
}
.merch-description, .merch-price {
padding: 10px;
margin: 15px 0;
background: #181d2d;
border-radius: 0.2em;
}
.content .merch-description {
font-size: 1em;
}
.merch-price {
background: #02a726;
width: calc(100% - 20px);
position: relative;
}
.merch-price h2 {
width: max-content;
}
.merch-price h2::after {
content: ' each';
font-size: 0.7em;
color: rgba(255, 255, 255, 0.5);
}
h1 {
font-size: 1.3em;
margin-bottom: 0.2em;
}
.buy-button {
position: absolute;
right: 10px;
top: 50%;
transform: translateY(-50%);
padding: 10px;
border-radius: 0.3em;
border: 1px solid transparent;
background: #fff;
}
.dropdown, textarea, input[type="text"], input[type="email"] {
padding: 5px;
margin-bottom: 5px;
border-radius: 0.3em;
border: 1px solid #2e3353;
background: #191C2D;
color: white;
}
input[type="text"], #state, input[type="email"], #ec {
margin-left: 10px;
}
@media only screen and (max-width: 910px) {
.merch-grid {
grid-template-columns: 1fr;
}
}
#pyrahacks-h1 {
color:#78e6d3;
}
#pyrahackstext {
color:#f31535;
}