-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (86 loc) · 1.68 KB
/
style.css
File metadata and controls
106 lines (86 loc) · 1.68 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*-------------------------
Simple reset
--------------------------*/
*{
margin:0;
padding:0;
}
/*-------------------------
General Styles
--------------------------*/
html{
background: url('./bg_tile.jpg') #383839;
background-attachment:fixed;
}
body{
color:#fcfcfc;
font:14px/1.3 'Segoe UI Light',Arial, sans-serif;
min-height: 800px;
padding-top:10px;
}
section{
display:block;
}
header{
display: block;
margin-bottom: 12px;
}
.my-name {
font-size:64px;
font-weight:normal;
margin-bottom: 12px;
line-height:1;
text-shadow:2px 2px 0 rgba(22,22,22,0.5);
}
.my-things {
color: #202020;
font-size: 18px;
font-weight: normal;
text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.1);
padding: 15px 0;
}
.no-fluff {
text-decoration: none;
}
.no-fluff-white {
text-decoration: none;
color: white;
}
/*----------------------------
Content Area
-----------------------------*/
#infoPage img{
float:left;
margin-left:-200px;
-moz-box-shadow: 2px 2px 0 #303030;
-webkit-box-shadow: 2px 2px 0 #303030;
box-shadow: 2px 2px 0 #303030;
}
#infoPage{
width:455px;
margin:200px auto 0;
}
p.info{
font-size: 1rem;
padding: 25px;
text-shadow: 1px 1px 0 #333333;
margin-bottom: 35px;
-webkit-box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);
-moz-box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);
box-shadow: 2px 2px 0 rgba(22, 22, 22, 0.1);
}
.social-icons {
text-align: center;
padding: 1em 1em;
list-style: none;
}
.social-icons-links li{
display: inline;
padding: 1em;
}
i {
color: white;
}
.nav-lnk a:link, .nav-lnk a:visited {
color: black;
}