stylesheets/public-inbox.css (2069B) - raw
1 body {
2 background: #151515 url("/images/bkg.png") 0 0;
3 color: #eaeaea;
4 font-size: 16px;
5 line-height: 1.5;
6 font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
7 }
8 a {
9 color: #ffcc00;
10 font-weight: 400;
11 text-decoration: none;
12 transition: all 0.3s;
13 -o-transition: all 0.3s;
14 -ms-transition: all 0.3s;
15 -moz-transition: all 0.3s;
16 -webkit-transition: all 0.3s;
17 }
18 a:hover {
19 color: #ffeb9b;
20 }
21 b {
22 font-weight: 500;
23 font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
24 color: #b5e853;
25 }
26 u {
27 text-decoration-color: #b5e853;
28 }
29 *.q {
30 color: #aaa;
31 }
32 hr {
33 margin: 1.5em 0;
34 height: 0;
35 border: 0;
36 border-bottom: 1px dashed #b5e853;
37 color: #b5e853;
38 }
39 input[type="submit"] {
40 background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.3), rgba(35, 35, 35, 0.3) 50%, rgba(10, 10, 10, 0.3) 50%, rgba(0, 0, 0, 0.3));
41 margin: 0 4px;
42 padding: 4px 18px;
43 border-radius: 50px;
44 border: 2px solid rgba(0, 0, 0, 0.7);
45 border-bottom: 2px solid rgba(0, 0, 0, 0.7);
46 border-top: 2px solid rgba(0, 0, 0, 1);
47 color: rgba(255, 255, 255, 0.8);
48 font-family: sans-serif;
49 font-weight: bold;
50 font-size: 13px;
51 text-decoration: none;
52 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
53 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
54 }
55 input[type="submit"]:hover {
56 color: #ffeb9b;
57 background: -webkit-linear-gradient(top, rgba(40, 40, 40, 0.6), rgba(35, 35, 35, 0.6) 50%, rgba(10, 10, 10, 0.8) 50%, rgba(0, 0, 0, 0.8));
58 }
59 input[type="text"] {
60 background: rgba(40, 40, 40, 0.3);
61 padding: 4px 18px;
62 border-radius: 50px;
63 border: 2px solid rgba(0, 0, 0, 0.7);
64 border-bottom: 2px solid rgba(0, 0, 0, 0.7);
65 border-top: 2px solid rgba(0, 0, 0, 1);
66 color: rgba(255, 255, 255, 0.8);
67 font-family: Helvetica, Arial, sans-serif;
68 font-size: 13px;
69 text-decoration: none;
70 text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.75);
71 box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
72 }
73 input[type="text"]:focus {
74 outline: none;
75 border: 2px solid rgba(255, 204, 0, 0.7);
76 }