-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
56 lines (56 loc) · 1021 Bytes
/
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
/* taken from the original page at bfdi.tv/5b */
* {
font-family: Helvetica, Arial, sans-serif;
text-align: center;
color:#666;
margin:0;
padding:0;
}
a{
color: black;
-webkit-transition: 0.5s ease;
-moz-transition: 0.5s ease;
-o-transition: 0.5s ease;
transition: 0.5s ease;
}
a:hover{
color: #666;
-webkit-transition: 0.2s ease;
-moz-transition: 0.2s ease;
-o-transition: 0.2s ease;
transition: 0.2s ease;
}
html{
background-color:white;
height:100%;
}
body{
height:100%;
width:960px;
margin:0 auto 0 auto;
min-height:600px;
position:relative;
}
p{
margin:0 0 0.7em;
}
#center{
position:absolute;
top:40%;
margin-top:-255px;
}
/* https://stackoverflow.com/questions/2310734/how-to-make-html-text-unselectable */
.unselectable {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
#hide-contenteditable {
width: 960px;
height: 540px;
overflow: hidden;
margin-bottom: 10px;
}