forked from txcsmad/f16-beginner-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
74 lines (70 loc) · 1.4 KB
/
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
65
66
67
68
69
70
71
72
73
74
html{
background-color: #eee;
font-family: 'Roboto';
font-size: 20pt;
}
body{
display: block;
margin: 0 auto;
max-width: 960px;
position: relative;
background-color: #fff;
}
#mainpage{
/*-webkit-box-shadow: 0 0 15px 2px #000;
box-shadow: 0 0 15px 2px #000;
border: 0px solid black;*/
margin: 0px 0px;
padding: 20px 20px;
overflow: hidden;
}
section{
float: right;
width: 100%;
margin: 0px 0px;
}
.embeddedimg{
float: right;
margin: 30px 30px;
}
code{
font-family: 'Fira Mono', 'Courier New', monospace;
}
h1{
font-size: 64px;
margin: 30px auto;
}
h2{
font-size: 40px;
border-bottom: 1px solid #888888;
}
.testClass{
float: right;
background-color: blue;
color: white;
}
/* micro clear fix -- http://nicolasgallagher.com/micro-clearfix-hack/ */
/**
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
* contenteditable attribute is included anywhere else in the document.
* Otherwise it causes space to appear at the top and bottom of elements
* that are clearfixed.
* 2. The use of `table` rather than `block` is only necessary if using
* `:before` to contain the top-margins of child elements.
*/
.cf:before,
.cf:after {
content: " "; /* 1 */
display: table; /* 2 */
}
.cf:after {
clear: both;
}
/**
* For IE 6/7 only
* Include this rule to trigger hasLayout and contain floats.
*/
.cf {
*zoom: 1;
}