forked from cconci/awesomeTerminalChrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
64 lines (56 loc) · 1018 Bytes
/
styles.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
/* CSS file placeholder. */
textarea {
width: 98%;
margin-left: auto;
margin-right: auto;
}
button {
background-color: #000000;
border-radius: 10px;
color: #ffffff;
cursor: pointer;
border: none;
outline: none;
}
button:hover {
border: none;
background: blue;
box-shadow: 1px 1px 1px #0000FF;
}
.rxOption {
position: absolute;
left: 300px;
/*padding: 10px 0px 10px 0px;*/
}
.rxOptionRadioButtons {
/*background-color: yellow;*/
position: absolute;
left: 400px;
}
/*Right align text*/
.statsCounter{
/*background-color: green;*/
width:98%;
display:inline-block;
text-align:right;
}
/*
based on h2
http://www.w3.org/TR/html-markup/h2.html
*/
.customeHeadings {
/*display: block;*/
font-size: 1.5em;
margin-top: 0.30em;
margin-bottom: 0.50em;
margin-left: 0.0em;
margin-right: 0.0em;
font-weight: bold;
}
/*
let me scroll in Y
http://stackoverflow.com/questions/21979994/chrome-app-cannot-be-scroll
*/
html, body {
overflow-y: visible;
}