Python 入門指南 5.0
app_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 | body {
background-color: #ccc;
}
td {
background-color: #ddd;
border-radius: 0.2em;
padding: 4px;
margin: 2px;
text-align: center;
cursor: default;
}
td.text {
color: white;
}
div.app {
text-align: center;
background-color: #ccc;
}
table.app {
width: 100%;
}
button {
width:100%;
}
td.input {
text-align: left;
}
td.output {
text-align: left;
}
#input {
width:97%;
font-family: monospace;
}
#output {
width:97%;
font-family: monospace;
}
#result {
text-align: right;
}
/* 檔名: app_style.css
說明:《Python入門指南》的範例程式
網站: http://kaiching.org
作者: 張凱慶
時間: 2023 年 7 月 */
|