-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex4.css
59 lines (49 loc) · 974 Bytes
/
index4.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
body {
background-color: black;
font-family: 'Economica', sans-serif;
color: blanchedalmond;
}
.container {
display: grid;
grid-gap: 10px;
grid-template-columns: 200px repeat(19, auto);
padding: 20 20 20 20;
/* position: relative; */
}
.item {
border-radius: 1px;
height: 80vh;
border-style:ridge;
border-color: #974;
border-width: 26px;
}
.item0 {
border-radius: 1px;
height:80vh;
border-top-style: outset;
border-bottom-style: inset;
border-color: #333;
border-width: 45px;}
.item1 {
border-radius: 1px;
height: 80vh;
border-style:double;
border-width: 9px;
}
.itemleft {
text-align: right;
left:50em;
}
.normal {
border-radius: 1px;
height:80vh;
/* border-top-style: outset; */
border-bottom-style: inset;
border-color: #333;
border-width: 45px;
/* position: relative; */
}
.keepleft {
position:fixed;
left: 0;
}