-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathstyle.css
118 lines (97 loc) · 2.71 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
@import 'https://fonts.googleapis.com/css?family=Lobster';
main {
width: 600px;
margin: auto;
padding-bottom: 300px;
}
header {
background-color: #000;
padding: 30px;
}
h1 {
font-size: 45px;
font-family: 'Lobster', cursive;
color: #fff;
}
h2 {
font-size: 32px;
font-family: 'Lobster', cursive;
}
header h2 {
color: #fff;<table class="table table-striped row-highlight table-condensed">
<thead>
<tr>
<th class="shortcut-base"><a>Base Key</a></th>
<th class="shortcut-binding"><a>Key Binding</a></th>
<th class="shortcut-cmd-id"><a>Command ID</a></th>
<th class="shortcut-cmd-name"><a>Command Name</a></th>
<th class="shortcut-orig"><a>Origin</a></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
}
p {
font-family: arial;
font-size: 16px;
}
.center {
text-align: center;
}
.status-bad {
color: red;
}
.status-good {
color: green;
}
.status-ok {
color: orange;
}
hr { margin: 50px 0;}
input[type=text] {
padding: 12px 20px;
margin: 8px 0;
}
button {
-moz-box-shadow:inset 0px 1px 0px 0px #54a3f7;
-webkit-box-shadow:inset 0px 1px 0px 0px #54a3f7;
box-shadow:inset 0px 1px 0px 0px #54a3f7;
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #007dc1), color-stop(1, #0061a7));
background:-moz-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-webkit-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-o-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:-ms-linear-gradient(top, #007dc1 5%, #0061a7 100%);
background:linear-gradient(to bottom, #007dc1 5%, #0061a7 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#007dc1', endColorstr='#0061a7',GradientType=0);
background-color:#007dc1;
-moz-border-radius:3px;
-webkit-border-radius:3px;
border-radius:3px;
border:1px solid #124d77;
display:inline-block;
cursor:pointer;
color:#ffffff;
font-family:Arial;
font-size:13px;
padding:6px 24px;
text-decoration:none;
text-shadow:0px 1px 0px #154682;
}
button:hover {
background:-webkit-gradient(linear, left top, left bottom, color-stop(0.05, #0061a7), color-stop(1, #007dc1));
background:-moz-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-webkit-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-o-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:-ms-linear-gradient(top, #0061a7 5%, #007dc1 100%);
background:linear-gradient(to bottom, #0061a7 5%, #007dc1 100%);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#0061a7', endColorstr='#007dc1',GradientType=0);
background-color:#0061a7;
}
button:active {
position:relative;
top:1px;
}
button:focus {
outline:none;
}