forked from cesarares/Logic-Sim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (86 loc) · 1.75 KB
/
style.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
html, body {
margin: 0;
width: 100%;
height: 100%;
overflow: hidden;
font-family: "Segoe UI", "Helvetica", Garuda, Arial, sans-serif;
display: block;
}
ul.examples li.title {
text-align: center;
font-size: 13pt;
border-radius: 0;
text-shadow: 0 0 8px #444;
box-shadow: 0 0 0;
background-color: white !important;
}
ul.examples {
position: absolute;
height: 100%;
width: 18%;
list-style: none;
font-size: 10pt;
padding: 0 10px;
}
ul.examples li {
background-color: #F7F5F2;
padding: 2px 6px 3px 0;
border-radius: 6px;
margin: 0 0 6px 0;
box-shadow: 1px 1px 2px #444;
text-align: center;
}
ul.examples li:hover {
background-color: #eee;
border-color: black !important;
}
ul.examples li a:hover {
text-shadow: 0 0 10px #444;
}
ul.examples li a {
color: #333;
padding: 0 0 0 14px;
text-decoration: none;
display: block;
margin: 0;
background: transparent;
}
ul.examples li.orange {
border-left: 8px solid #F5876E;
}
ul.examples li.blue {
border-left: 8px solid #61A8DC;
}
ul.examples li.green {
border-left: 8px solid #8EBD40;
}
ul.examples li.purple {
border-left: 8px solid #988CC3;
}
ul.examples li.gold {
border-left: 8px solid #D8C86E;
}
ul.examples li.pink {
border-left: 8px solid #D8AAAA;
}
ul.examples li.sky {
border-left: 8px solid #B4D8E7;
}
ul.examples li.lightgreen {
border-left: 8px solid #B0E57C;
}
ul.examples li.lightpurple {
border-left: 8px solid #BDAEC6;
}
ul.examples li.yellow {
border-left: 8px solid #F4E698;
}
iframe.example {
position: absolute;
left: 20%;
width: 80%;
height: 99%;
overflow: hidden;
border: 1px solid black;
box-shadow: 0 0 5px black;
}