-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.css
74 lines (66 loc) · 1.39 KB
/
global.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
@font-face {
font-family: "Passero One";
src: url(PasseroOne-Regular.ttf) format("truetype");
}
html{
background:#fff url(images/bg.png) bottom left fixed repeat-x;
}
body{
margin:2em auto 0;
}
body > *:not(footer):not(canvas){background-color:rgba(255,255,255,0.9);}
nav{
margin-top:2em;
text-align:center;
}
footer{
max-width:810px;
margin:auto;
}
footer > p {text-align:center; font-family:"Passero One"}
nav a {
font-family:"Passero One";
font-size:24px;
text-decoration:none;
display:inline-block;
padding:5px 10px;
width:120px;
background-color:#fff;
color:#000;
border:2px solid #000;
transition: all .15s;
-moz-transition: all .15s;
-o-transition: all .15s;
-webkit-transition: all .15s;
-ms-transition: all .15s;
}
nav a.button {
font-size:12px;
padding:2px 10px;
width:120px;
}
nav a.button:hover{background-color:#00f;color:#fff;}
nav > a:hover {
background-color:#fc2;
}
canvas{
border:3px solid black;
display:block;
margin:auto;
background-color:#fff !important;
transition: width .15s;
-moz-transition: width .15s;
-o-transition: width .15s;
-webkit-transition: width .15s;
-ms-transition: width .15s;
}
strong, header{
font-family:"Passero One";
}
header{
text-align:center
}
section{padding:1em;max-width:480px;margin:auto;}
section + section{margin-top:1em;border-top:1px dashed #aaa;}
section > p{text-align:justify;}
section > p > img{vertical-align:middle;}