]> 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 .index-table {
37     width: 700px;
38     margin-left: auto;
39     margin-right: auto;
40 }
41
42 .table-with-rows > tbody > tr:nth-of-type(2n),
43 .table-with-rows > thead,
44 .index-table > thead {
45     background-color: #eaeaea;
46 }
47
48 .index-table h3 {
49     margin: 0px;
50 }
51
52 .index-table form {
53     padding: 2px;
54 }
55
56 table td {
57     padding: 4px;
58     text-align: left;
59 }
60
61 .block_level {
62     width: 100%;
63     margin: auto;
64     margin-top: 10px;
65 }
66 .block {
67     padding: 5px;
68     margin: 5px;
69 }
70
71 a {
72     color: #000000;
73 }
74 a.listlink {
75     text-decoration: none;
76 }
77 a:hover {
78     color: #f00000;
79 }
80
81 input {
82     padding: 5px;
83     border-radius: 5px;
84     font-size: 16px;
85 }
86 input[type="submit"] {
87     cursor: pointer;
88 }
89 input:hover {
90     border-color: #f00000;
91 }
92
93 span[title] {
94     text-decoration: underline dotted;
95 }
96
97 .scoreboard {
98     margin-left: auto;
99     margin-right: auto;
100     min-width: 50%;
101     width: 50em;
102 }
103
104 /* notice box */
105 .notice {
106     margin-left: auto;
107     margin-right: auto;
108     margin-bottom: 20px;
109     width: 50em;
110     text-align: left;
111     border: 1px solid #eaeaea;
112     border-radius: 5px;
113 }
114 /* notice header */
115 .notice > h3 {
116     margin: 0px;
117     padding: 5px;
118     background-color: #eaeaea;
119     text-align: center;
120 }
121 /* notice text/body */
122 .notice > div {
123     margin: 0px;
124     padding: 5px;
125 }
126
127 li {
128     padding-bottom: 4px;
129 }
130
131 code {
132     padding: 3px;
133     background-color: #eaeaea;
134     border-radius: 5px;
135 }
136
137 ul.nav > li {
138     margin: 2px;
139     display: inline;
140 }