Download this file

styles.css    92 lines (86 with data), 1.3 kB

 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
font: 14px/1.8em 'Open Sans', Helvetica, Arial, Helvetica, sans-serif;
-webkit-font-smoothing: antialiased;
}
/* Structure */
.inner{
max-width:980px;
margin:auto;
}
header{
max-width:990px;
margin:auto;
margin-top:50px;
margin-bottom:50px;
}
footer {
background: #023E73;
padding: 10px;
margin-top: 80px;
color: #C0C0C0;
font-size:0.9em;
}
footer a { color: #ddd; }
footer a:hover { color: #fff; }
div.center {
text-align: center;
}
section {
margin-bottom:50px;
}
select, button {
width : 100%;
}
/* Fonts */
h1,h2,h3,h4 {
font-weight: normal;
font-family:'Bree Serif', Georgia, serif;
color:#023E73;
}
p {
margin-bottom: 1em;
}
p.lead{
margin-top:20px;
}
a {
color: #048ABF;
}
ul.featured li {
width:450px;
/*border:1px solid #eee;*/
padding:5px;
margin:5px;
/*cursor:pointer;*/
-webkit-box-shadow : 0;
}
ul.featured li:hover {
background-color:#eee;
}
/* Misc */
.logo{
width:50%
}
.project-list-icon {
width:50px;
float:left;
padding:5px;
}
.well-light{
background-color: #fefefe;
border : 0;
box-shadow: none;
-webkit-box-shadow : none;
}
.well {
box-shadow:none;
-webkit-box-shadow : none;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
table#comp tr:hover {
background-color:#eee;
}