-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.css
125 lines (125 loc) · 1.9 KB
/
style.css
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
* {
list-style: none;
margin: 0;
padding: 0;
}
body {
background-color: #eee;
color: #101;
font-family: Helvetica, Arial, sans-serif;
font-size: 110%;
}
.wrapper {
background-color: #fff;
display: flex;
flex-direction: column;
margin: 0 auto;
max-width: 800px;
min-height: 100vh;
}
h1, h2, h3 {
font-weight: lighter;
margin: 1ex auto;
text-shadow: 0 0, 1pt 1pt #999;
}
h1 {
font-size: 275%;
}
p {
margin: 1ex 0;
}
header, .main, footer {
padding: 0 1em;
}
header {
background-color: #ddd;
}
header img {
float: right;
height: 200px;
margin: -100px;
width: 200px;
}
footer {
background-color: #ddd;
color: #999;
font-size: 75%;
padding: 0.5ex;
text-align: center;
}
a {
color: #333;
}
footer a {
color: #999;
}
.head-title {
min-height: 100px;
}
.main {
flex: 1;
}
.main p:first-child {
margin-right: 110px;
}
.meetup {
margin: 1ex 0;
}
.presentation {
background-color: #ddd;
border-radius: 5px;
display: block;
margin: 1ex 0;
padding: 1ex 1em;
}
.presentation_title {
font-weight: bold;
}
.tag {
background-color: #bbb;
border-radius: 2px;
display: inline-block;
font-family: monospace;
font-size: 75%;
padding: 2pt 4pt;
}
.pres_goodies a {
background-color: #bbb;
border-radius: 5px;
color: #333;
display: inline-block;
margin-top: .5ex;
padding: .5ex 0;
text-align: center;
text-decoration: none;
text-shadow: none;
}
.pres_goodies a {
margin-left: 3.5%;
width: 31%;
}
.pres_goodies a:first-child {
margin-left: 0;
}
/* experiment */
.members {
margin: 1ex auto;
}
.members img {
width: 64pt;
height: 64pt;
border-radius: 5px;
filter: url(filters.svg#grayscale); /* Firefox 3.5+ */
filter: gray; /* IE6-9 */
-webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
}
.members a {
margin-right: 1ex;
}
.members a:last-child {
margin-left: 0;
}
.members img:hover {
filter: none;
-webkit-filter: none;
}