-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmain.css
More file actions
executable file
·158 lines (125 loc) · 2.15 KB
/
main.css
File metadata and controls
executable file
·158 lines (125 loc) · 2.15 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
body {
font-family: Monaco, 'Andale Mono', 'Courier New', monospace;
font-size: 12px;
background: #f5f5f5;
color: #333;
}
a,
a:visited {
color: DodgerBlue;
}
a:hover {
color: DeepSkyBlue;
}
p {
margin: 5px 0 5px 0;
}
h1 {
font-size: 32px;
color: gray;
text-shadow: 1px 1px 1px #ccc;
padding: 50px 20px 20px 20px;
}
h1:before,
h1:after {
content: " @@ ";
}
h2 {
font-size: 24px;
color: red;
text-shadow: 1px 1px 1px #ccc;
margin: 10px 0px 25px 0px;
}
h2:before {
content: "--- ";
}
div.container {
background-image: url(../img/videos.png);
background-repeat: no-repeat;
background-position: 500px 105px;
}
section:nth-of-type(odd) h2 {
color: green;
}
section:nth-of-type(odd) h2:before {
content: "+++ ";
}
h3 {
font-size: 16px;
}
.unified {
color: red;
}
.diff {
color: green;
}
dt {
clear: both;
float: left;
font-weight: bold;
}
dd {
margin-left: 5em;
}
#intro {
padding: 20px;
}
#get-involved {
padding: 20px 0 30px 0;
}
.nav-tabs a {
font-size: 1.3em;
}
.coming-soon {
font-style: italic;
}
/*===== social links =====*/
.social {
float: right;
text-align: right;
margin: 30px 0;
}
.social div {
margin: 5px;
min-height: 22px;
background-repeat: no-repeat;
background-image: url(../img/icons-22.png);
padding-right: 28px;
}
.social .twitter { background-position: right -2px; }
.social .irc { background-position: right -46px; }
.social .mailing { background-position: right -89px; }
/*==== attendn ====*/
.attendn ul {
max-height: 600px;
overflow: scroll;
overflow-x: hidden;
}
/*==== iframe map and video====*/
.iframe-video {
margin:0;
border:none;
outline:none;
overflow:hidden;
}
/*======== photostream =======*/
#photostream {
font-size: 3em;
color: #ddd;
text-align: center;
margin: 30px;
}
#photostream img {
width: 320px;
height: 240px;
border-radius: 5px;
}
#photostream img:first-child {
margin-right: 15px;
}
#photostream.loading img {
display: none;
}
#photostream.loading:after {
content: "Loading photostream...";
}