PluginProbe
wp-forecast / 1.7
wp-forecast v1.7
10.0 trunk 1.4 1.6 1.7 1.8 1.9 2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 2.8 2.9 3..5 3..8 3.0 3.1 3.2 3.3 3.4 3.6 All 86 releases
wp-forecast / wp-forecast.css

wp-forecast.css in wp-forecast 1.7, at wp-forecast.css

80 lines 2.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /* style for current weather data */
2 div.wp-forecast-curr {
3 font-size: 11px;
4 font-family: Arial;
5 border: 0px solid;
6 padding: 10px;
7 text-align:center;
8 margin-left:auto;
9 margin-right:auto;
10 }
11
12 /* style for current weather data table section */
13 table.wp-forecast-curr {
14 font-size: 11px;
15 font-family: Arial;
16 font-weight: bolder;
17 font-variant: small-caps;
18 border-spacing:2px;
19 border-collapse:collapse;
20 text-align:left;
21 margin-left:auto;
22 margin-right:auto;
23 }
24
25 /* style for current weather data details */
26 div.wp-forecast-curr-details {
27 font-size: 11px;
28 font-family: Arial;
29 border: 0px solid;
30 padding: 10px;
31 text-align:left;
32
33 }
34
35 /* style for forecast data */
36 div.wp-forecast-fc {
37 font-size: 11px;
38 font-family: Arial;
39 border: 0px solid;
40 padding: 10px;
41 text-align:center;
42 margin-left:auto;
43 margin-right:auto;
44 }
45
46 /* style for forecast data table header section */
47 table.wp-forecast-fc-head {
48 font-size: 11px;
49 font-family: Arial;
50 font-weight: bold;
51 font-variant: small-caps;
52 border-spacing:2px;
53 border-collapse:collapse;
54 text-align:left;
55 margin-left:auto;
56 margin-right:auto;
57 }
58 /* style for forecast data table section */
59 table.wp-forecast-fc {
60 font-size: 11px;
61 font-family: Arial;
62 font-weight: bolder;
63 font-variant: small-caps;
64 border-spacing:2px;
65 border-collapse:collapse;
66 text-align:left;
67 margin-left:auto;
68 margin-right:auto;
69 }
70
71 /* style for forecast data details */
72 div.wp-forecast-fc-details {
73 font-size: 11px;
74 font-family: Arial;
75 border: 0px solid;
76 padding: 10px;
77 text-align:left;
78
79 }
80