blob: f30b3cb08ffa0d0a170cdda37f366183bc4fe507 (
plain)
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
|
/* stylelint-disable */
html, body {
height: 100%;
background-color: #f2f2f2;
}
.shrine-product-card {
width: 320px;
border-radius: 4px;
margin-bottom: 8px;
background-color: white;
}
.shrine-product-card__price {
display: block;
text-align: right;
}
.shrine-product-card__image {
margin: 0 auto;
}
#shrine-header {
background-color: var(--mdc-theme-background);
color: var(--mdc-theme-text-primary-on-background);
}
#shrine-header .mdc-toolbar__section {
overflow: visible;
}
#shrine-logo {
background: url(assets/logo.png) left center no-repeat;
background-size: contain;
width: 100%;
height: 100%;
}
/* Hide actual text for screen readers */
#shrine-logo > span {
position: absolute;
width: 1px;
height: 1px;
padding: 0;
margin: -1px;
overflow: hidden;
clip: rect(0,0,0,0);
border: 0;
}
#shrine-nav-icon {
width: 24px;
height: 24px;
margin-right: 40px;
text-decoration: none;
}
#shrine-nav-icon:visited,
#shrine-nav-icon:active,
#shrine-nav-icon:focus {
color: var(--mdc-theme-text-primary-on-background);
}
#shrine-nav-menu {
text-transform: uppercase;
padding-left: 16px;
}
#shrine-nav-menu .mdc-temporary-drawer__drawer {
background-color: #fafafa;
}
#shrine-nav-menu .mdc-temporary-drawer__header {
background: url(assets/logo.png) 32px 32px no-repeat;
background-size: 30%;
}
#shrine-nav-menu .mdc-temporary-drawer__header::before {
padding-top: 30%;
}
#shrine-nav-menu .mdc-temporary-drawer__content {
background: url(assets/diamond.svg) -32px bottom no-repeat;
background-size: 50%;
}
#shrine-nav-menu .mdc-list-item {
height: 32px;
padding-left: 32px;
letter-spacing: .2em;
}
#shrine-products {
--mdc-layout-grid-gutter: 8px;
}
#shrine-products .mdc-layout-grid__cell {
display: flex;
justify-content: center;
}
|