-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiw_examples.css
95 lines (78 loc) · 1.52 KB
/
iw_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
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
html, body {
font-family: tahoma,verdana,arial,helvetica;
font-size: 12pt;
margin:5px;
padding:0;
}
h1 {
background-color: #cdcdcd;
font-size: 20pt;
}
h2 {
background-color: #eee;
font-size: 16pt;
}
h3 {
background-color: #fff;
font-size: 14pt;
}
h3 {
font-family: tahoma,verdana,arial,helvetica ;
font-size: 14pt;
}
.esempi {
width: 99.5%; margin: auto;
}
.esempi .esempio {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
margin: 2px 0;
justify-content: space-between;
padding-top: 2px;
border-top: 2px solid #cdcdcd;
}
.esempi .esempio:first-child {
padding-top: 0;
border-width: 0;
}
.esempio .sorgente,.esempio .rendering {
flex-basis: 48.5%;
max-width: 48.5%;
flex-grow: 1;
flex-shrink: 0;
padding: 0.5%;
}
.esempio .rendering {
border: 1px dashed #cdcdcd;
}
.esempio .sorgente {
border: 1px dashed #cdcdcd;
font-family: courier;
background-color: #eee;
}
.esempio .sorgente p {
margin: 0;
padding: 2px;
white-space: pre-line;
}
.esempio .sorgente p:hover {
border: 1px dashed black;
background-color: white;
color: black;
padding: 1px;
cursor: help;
}
.esempio .sorgente .commento {
font-family: tahoma,verdana,arial,helvetica;
font-size: 90%;
font-weight: bold;
background-color: yellow;
display: block;
}
.esempio .sorgente .commento:before {
content: "/*";
}
.esempio .sorgente .commento:after {
content: "*/";
}