-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
41 lines (35 loc) · 978 Bytes
/
styles.css
File metadata and controls
41 lines (35 loc) · 978 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
html {
height: 100%;
}
body {
margin: 0;
font: 16px/1.2em 'Varela Round', sans-serif;
color: white;
background: #a30000;
background: -moz-linear-gradient(top, #ff0000 0%, #a30000 43%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ff0000), color-stop(43%,#a30000));
background: -webkit-linear-gradient(top, #ff0000 0%,#a30000 43%);
background: -o-linear-gradient(top, #ff0000 0%,#a30000 43%);
background: -ms-linear-gradient(top, #ff0000 0%,#a30000 43%);
background: linear-gradient(to bottom, #ff0000 0%,#a30000 43%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff0000', endColorstr='#a30000',GradientType=0 );
}
.container {
position: relative;
margin: 0 auto;
padding: 0 20px;
max-width: 1000px;
}
.name {
margin: 50px 0;
font: 500%/1.2em italic 'Press Start 2P', cursive;
text-shadow: 0 0 5px #a30000;
}
.who-am-i {
float: left;
width: 45%;
}
.what-i-think {
float: right;
width: 45%;
}