-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples.css
62 lines (56 loc) · 994 Bytes
/
examples.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
body {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: row;
margin:0;
padding: 0;
}
#examples-container {
flex:1;
border-right: 2px #ccc solid;
overflow-y: auto;
}
.demo-section {
padding: 40px;
background-color: #fafafb;
}
#example1, #example2 {
list-style: none;
}
#example1 li {
background-color: white;
box-shadow: #cccccc 0 0 3px;
padding: 16px;
margin: 8px 0;
}
#example2 li {
background-color: white;
box-shadow: #cccccc 0 0 3px;
padding: 8px;
margin: 0;
cursor: pointer;
border-bottom: #eeeeee 1px solid;
}
#example2 li:hover {
background-color: #eeeeee;
}
#example2 li:last-child {
border: none;
}
.menu-trigger {
display: inline-block;
padding: 2px 4px;
border: transparent 2px solid;
border-radius: 2px;
cursor:pointer;
}
.menu-trigger:hover {
border-color: #ccc;
background-color: #eee;
}
#actions-monitor {
flex: 1;
}
.example-card {
}