forked from jdm/trainingmontage
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyle.css
76 lines (63 loc) · 1.06 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
* {
font-family: open sans;
}
.button {
border-radius: 3px;
border: 0px black solid;
padding: 15px;
cursor: pointer;
box-shadow: 0px 0px 3px #888888;
display: inline-block;
margin: 0px 10px;
}
.button:active {
box-shadow: 0px 0px 8px #888888;
-moz-user-select: none;
}
code {
background-color: lightgrey;
padding: 5px;
border-radius: 5px;
line-height: 2em;
}
.step {
/*border: 1px solid black;*/
/*position: relative;*/
display: none;
text-align: center;
margin-left: auto;
margin-right: auto;
max-width: 80%;
background-color: rgba(255, 255, 255, .8);
}
.hint {
/* border: 1px dashed red;*/
padding: 5px;
display: none;
}
.initial {
display: block;
}
body {
font-size: large;
}
img {
margin: 20px auto;
display: block;
}
#floater {
float:left;
/* height:50%;*/
margin-bottom:-200px;
}
.step {
clear:both;
min-height:500px;
position:relative;
}
#contribute {
font-size: small;
line-height: 1em;
text-align: center;
margin: 50px auto;
}