~cmars/hockeypuck/master

« back to all changes in this revision

Viewing changes to www/css/hkp.css

  • Committer: Casey Marshall
  • Date: 2012-12-04 03:22:21 UTC
  • Revision ID: git-v1:bd158e13017b27f98633caf2b10918c5e623543b
* === added directory instroot, ... scripts/crossbuild.sh:
  - Relocate static system installed files to instroot.
  - Added cross-compilation script. LP: #1086192

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
@font-face {
2
 
  font-family: 'Arvo';
3
 
  font-style: normal;
4
 
  font-weight: 400;
5
 
  src: local('Arvo'), url(/fonts/Arvo/Arvo-Regular.ttf) format('truetype');
6
 
}
7
 
@font-face {
8
 
  font-family: 'Droid Sans';
9
 
  font-style: normal;
10
 
  font-weight: 400;
11
 
  src: local('Droid Sans'), local('DroidSans'), url(/fonts/Droid_Sans/DroidSans.ttf) format('truetype');
12
 
}
13
 
/* Purty letters */
14
 
body {
15
 
        font-family: 'Droid Sans', sans-serif;
16
 
}
17
 
h1, h2 {
18
 
        font-family: 'Arvo', serif;
19
 
        font-weight: normal;
20
 
}
21
 
/* General */
22
 
#header h1 {
23
 
        margin-bottom: 0.1em;
24
 
}
25
 
#footer {
26
 
        font-size: x-small;
27
 
        text-align: center;
28
 
}
29
 
a#logo:link, a#logo:visited, a#logo:hover, a#logo:active {
30
 
        text-decoration: none;
31
 
        color: #000;
32
 
33
 
/* Sticky footer */
34
 
html, body, #container { height: 100%; }
35
 
body > #container { height: auto; min-height: 100%; }
36
 
#footer {
37
 
        clear: both;
38
 
        position: relative;
39
 
        z-index: 10;
40
 
        height: 3em;
41
 
        margin-top: -3em;
42
 
}
43
 
#main { padding-bottom: 3em; } /* equal to footer height */
44
 
/* Search page */
45
 
.pks-search {
46
 
        text-align: center;
47
 
}
48
 
h2.pks-search {
49
 
        padding-top: 10%;
50
 
}
51
 
.pks-search input[name=search] {
52
 
        width: 60%;
53
 
}
54
 
/* Top menu, ripped from Sliding Doors */
55
 
#topmenu {
56
 
        float:left;
57
 
        width:100%;
58
 
        line-height:normal;
59
 
        border-bottom: solid 1px black;
60
 
        margin-bottom: 1%;
61
 
}
62
 
#header ul {
63
 
        margin:0;
64
 
        padding:0;
65
 
        list-style:none;
66
 
}
67
 
#header li {
68
 
        float:left;
69
 
        margin:0;
70
 
        padding:0;
71
 
}
72
 
#header a, #header span {
73
 
        display:block;
74
 
        padding: 3px 3px 3px 3px;
75
 
        margin: 0;
76
 
        border-right: dotted 1px #ccc;
77
 
}
78
 
#header span.menu-label {
79
 
        padding-left: 13px;
80
 
}
81
 
#header li.about {
82
 
        float: right
83
 
}
84
 
span.todo-link {
85
 
        color: #999
86
 
}