]> git.mxchange.org Git - fba.git/blob - static/css/light.css
Continued:
[fba.git] / static / css / light.css
1 body {
2     background-color: #ffffff;
3     color: #000022;
4     text-align: center;
5     font-family: sans;
6 }
7
8 #header {
9     margin-bottom: 20px;
10 }
11
12 h1 {
13     background-color: #eaeaea;
14     border-radius: 5px;
15     padding-left: 5px;
16     padding-right: 5px;
17     width: auto;
18 }
19
20 #content {
21     margin-bottom: 20px;
22 }
23
24 table {
25     width: 100%;
26     border: 2px solid #eaeaea;
27     border-spacing: 0px;
28     border-radius: 5px;
29 }
30
31 th {
32     padding-top: 4px;
33     padding-bottom: 4px;
34 }
35
36 table.with-rows > tbody > tr:nth-of-type(2n),
37 table.with-rows > thead {
38     background-color: #eaeaea;
39 }
40
41 table td {
42     padding: 4px;
43     text-align: left;
44 }
45
46 .block_level {
47     width: 100%;
48     margin: auto;
49     margin-top: 10px;
50 }
51 .block {
52     padding: 5px;
53     margin: 5px;
54 }
55
56 a {
57     color: #000000;
58 }
59 a.listlink {
60     text-decoration: none;
61 }
62 a:hover {
63     color: #f00000;
64 }
65
66 input {
67     padding: 5px;
68     border-radius: 5px;
69     font-size: 16px;
70 }
71 input[type="submit"] {
72     cursor: pointer;
73 }
74 input:hover {
75     border-color: #f00000;
76 }
77
78 span[title] {
79     text-decoration: underline dotted;
80 }
81
82 .scoreboard {
83     margin-left: auto;
84     margin-right: auto;
85     min-width: 50%;
86     width: 50em;
87 }
88
89 /* notice box */
90 .notice {
91     margin-left: auto;
92     margin-right: auto;
93     margin-bottom: 20px;
94     width: 50em;
95     text-align: left;
96     border: 1px solid #eaeaea;
97     border-radius: 5px;
98 }
99 /* notice header */
100 .notice > h3 {
101     margin: 0px;
102     padding: 5px;
103     background-color: #eaeaea;
104     text-align: center;
105 }
106 /* notice text/body */
107 .notice > div {
108     margin: 0px;
109     padding: 5px;
110 }
111
112 li {
113     padding-bottom: 4px;
114 }
115
116 code {
117     padding: 3px;
118     background-color: #eaeaea;
119     border-radius: 5px;
120 }
121
122 ul.nav > li {
123     margin: 2px;
124     display: inline;
125 }