-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (67 loc) · 1.18 KB
/
style.css
File metadata and controls
84 lines (67 loc) · 1.18 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
.contanier{
margin-top: 25px;
border: 1px solid;
position: relative;
}
.layout-row, .layout-column{
margin-left: 25px;
display: flex;
}
.layout-column{
display: flex;
flex-direction: column;
}
.menu-item{
padding: 10px;
border: 1px solid black;
background-color: deepskyblue;
position: relative;
}
.close-btn{
position: absolute;
right: 0;
margin-right: 5px;
}
.wrap{
flex-wrap: wrap;
}
/** axiss painings */
.layout-row::after, .layout-column::after{
display: block;
position: absolute;
color: red;
width: 100%;
height: 1px;
bottom: -10px;
border-bottom: 2px dashed red;
}
.layout-row::before,.layout-column::before{
display: block;
position: absolute;
word-wrap: break-word;
padding: 4px;
color: red;
width: 1px;
height: 100%;
top: 0;
padding-right: 10px;
left: -25px;
border-right: 2px dashed red;
}
.layout-row::after{
content: 'main';
}
.layout-column::after{
content: 'cross';
}
.layout-row::before{
content: 'cross';
}
.layout-column::before{
content: 'main';
}
/* .menu-item:nth-child(2n){
background-color: yellow;
height: 50px;
overflow: auto;
} */