-
Notifications
You must be signed in to change notification settings - Fork 0
/
vfield.css
110 lines (96 loc) · 1.74 KB
/
vfield.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
104
105
106
107
108
109
section.examples
{
overflow: auto;
width: 100%;
}
section.examples div.example
{
width: 50%;
padding-left: 5%;
padding-right: 5%;
margin: 0%;
}
div.steppedExample div.step
{
width: 100%;
overflow: auto;
}
div.step div.explanation
{
overflow: hidden;
}
table.explanation
{
margin-right: auto;
margin-left: auto;
font-family: verdana, arial, sans-serif;
color: #000066;
border-width: 1px;
border-color: #666666;
border-collapse: collapse;
}
table.explanation th
{
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
background-color: #dedede;
}
table.explanation td
{
text-align: left;
border-width: 1px;
padding: 8px;
border-style: solid;
border-color: #666666;
}
figure canvas
{
max-width: 100%;
}
/*
@media (min-width: 1150px)
{
div.step pre.prettyprint
{
float: left;
margin-right: 5%;
margin-top: 0;
}
}
*/
/* Calls out the association between the description and the code. */
/*div.step:hover
{
filter: drop-shadow(4px 4px 2px #bbb);
-webkit-filter: drop-shadow(4px 4px 2px #bbb);
-moz-filter: drop-shadow(4px 4px 2px #bbb);
-o-filter: drop-shadow(4px 4px 2px #bbb);
-ms-filter: drop-shadow(4px 4px 2px #bbb);
}*/
/*
* A Kludge allowing me to put the content on a new line.
* Turn off border for Google prettyprint
*/
pre.prettyprint
{
margin: -1.0em auto;
border: none !important;
}
@media (max-width: 400px)
{
figure
{
margin-left: 10px;
margin-right: 10px;
}
.optional
{
display: none;
}
pre.prettyprint
{
overflow-x: scroll;
}
}