-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (119 loc) · 2.28 KB
/
style.css
File metadata and controls
119 lines (119 loc) · 2.28 KB
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
.main-container {
background-color: black;
display: grid;
grid-template-columns: repeat(20,5%);
grid-template-rows: repeat(5, 15fr);
}
.name {
grid-column: 1;
grid-row: 1 / span 5;
text-align: end;
justify-content: end;
writing-mode:vertical-rl;
line-height:2rem;
transform:rotate(180deg);
font-size: 66px;
color: azure;
padding: 15px;
font-variant: small-caps;
}
.picture {
background-image: url("https://upload.wikimedia.org/wikipedia/en/1/1a/Kentaro_Miura.png");
height: 333px;
width: 255px;
grid-column: 2;
align-content: start;
}
.contact {
display: grid;
grid-row-start: 2;
grid-column: 2/4;
background-color: darkred;
font: small-caps 12px Verdana
}
.sacrifice {
max-height: inherit;
max-width: inherit;
height: inherit;
width: inherit;
object-fit: cover;
}
.brandImage {
grid-column-start: 12;
max-height: 333px;
}
.gutsQuote {
display: grid;
grid-column: 7/12;
font: small-caps 30px Verdana;
background-color: darkred;
justify-content: center;
align-content: center;
align-items: center;
}
.mangaPanelOne {
grid-row-start: 2;
grid-column: 5/13;
max-height: 333px;
}
.mangaOne {
display: block;
width: 15%;
height: auto;
position: relative;
padding: 56.25% 0 0 0;
}
body > div > div.mangaPanelOne > a > img {
display: block;
max-width: 600%;
max-height: 150%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mangaPanelTwo {
grid-row: 3/6;
grid-column: 1/7;
max-height: 333px;
}
.mangaTwo {
display: block;
width: 100%;
height: auto;
position: relative;
padding: 56.25% 0 0 0;
}
body > div > div.mangaPanelTwo > a > img {
display: block;
max-width: 300%;
max-height: 300%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.mangaPanelThree {
grid-row: 3/6;
grid-column: 8/21;
max-height: 333px;
}
.mangaThree {
display: block;
width: 100%;
height: auto;
position: relative;
padding: 56.25% 0 0 0;
}
body > div > div.mangaPanelThree > a > img {
display: block;
max-width: 120%;
max-height: 120%;
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}