-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwall.css
81 lines (64 loc) · 1.26 KB
/
wall.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
:root {
--yellow-size: 550px;
}
body {
background-color: black;
font-family: 'Economica', sans-serif;
color: blanchedalmond;
}
img {
max-width:max-content;
max-height:max-content;
}
.container {
display: grid;
grid-gap: 10px;
border: #FFF;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: repeat(5, 100px);
/* grid-auto-flow: dense;*/
place-items: center center;
/* justify-items: center;
align-items: center;*/
}
.item:nth-child(6n) {
grid-column: span 6;
}
.item:nth-child(3n) {
grid-column: span 3;
}
.item {
border-radius: 1px;
background-color: white;
/* height: 600px;
border-style:ridge;
border-color: #974;
border-width: 26px; */
}
.item3 {
border-radius: 1px;
height: 600px;
border-style:ridge;
border-color: #974;
border-width: 26px;
}
.item4 {
border-radius: 1px;
height: 600px;
border-style:ridge;
border-color: #974;
border-width: 52px;
}
.item0 {
border-radius: 1px;
height: 600px;
border-top-style: outset;
border-bottom-style: inset;
border-color: #333;
border-width: 45px;}
.item1 {
border-radius: 1px;
height: 600px;
border-style:double;
border-width: 9px;
}