-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
61 lines (59 loc) · 1.05 KB
/
styles.css
File metadata and controls
61 lines (59 loc) · 1.05 KB
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
body {
padding: 2em;
font-family: 'Roboto';
}
.lead {
font-size: 1.33333333333333em;
font-weight: 300;
}
.jumbotron {
background-color: #fff;
font-size: 24px;
}
.jumbotron h1 {
font-size: 42px;
}
.form-control-url {
font-size: 1em;
font-weight: 300;
}
.btn-shorten {
font-weight: 300;
font-size: 22px;
}
strong {
font-weight: 700;
}
code {
font-family: 'Roboto';
font-weight: 500;
font-size: 1em;
border: 2px solid transparent;
-webkit-transition: all 0.1s ease-out;
-moz-transition: all 0.1s ease-out;
-ms-transition: all 0.1s ease-out;
-o-transition: all 0.1s ease-out;
transition: all 0.1s ease-out;
-ms-word-break: break-all;
word-break: break-all;
/* Non standard for webkit */
word-break: break-word;
-webkit-hyphens: auto;
-moz-hyphens: auto;
-ms-hyphens: auto;
hyphens: auto;
}
code.active,
code:hover {
/*color: #78bc2f;*/
/* color: #468847;
background-color: #dff0d8;
border: 2px solid #d6e9c6;*/
}
[contenteditable='true'] {
color: #000;
background-color: #fff;
}
.btn-ok {
margin-left: 10px;
}