-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
62 lines (51 loc) · 763 Bytes
/
Copy pathstyles.css
File metadata and controls
62 lines (51 loc) · 763 Bytes
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
body {
background-color:#444;
font-family: verdana, arial;
color: #fff;
font-size:18px;
min-width:320px;
}
.float {
float: left;
}
.is-bold {
font-weight: bold;
}
.is-hidden {
display: none;
}
.is-dummy {
color: red;
background-color: pink;
}
.has-border {
border: dashed 1px white;
}
/* ***** */
.inbox {
background-color: #58a;
color: #fff;
}
.inbox .unread {
background-color: blue;
}
pre, blockquote {
-moz-border-radius:10px 10px 10px 10px;
-webkit-border-radius:10px 10px 10px 10px;
border-radius:10px 10px 10px 10px;
background-color:#000;
margin:15px 0;
padding:15px;
}
pre, code {
font-family:monospace;
font-size:22px;
}
.btn-large {
font-size: 28px;
}
.reveal iframe {
height:100%;
min-height: 600px;
width:100%;
}