-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
92 lines (78 loc) · 1.29 KB
/
style.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
body {
background-color: #fff;
margin: 0;
padding: 0;
font-family: verdana, sans-serif;
font-size: 13px;
line-height: 1.6em;
color: #333;
}
a, a:hover {
color: #666;
text-decoration: none;
}
h1 {
font-family: 'Ubuntu Condensed', verdana, sans-serif;
font-size: 48px;
color: #000;
text-transform: uppercase;
}
h2 {
font-family: 'PT Sans Narrow';
font-size: 24px;
color: #333;
margin-bottom: 25px;
}
p {
text-align: justify;
}
#container {
width: 960px;
margin: 0 auto;
padding: 15px 0px;
}
#title {
text-align: center;
}
#technologies {
text-align: center;
width: 675px;
margin: 0 auto;
padding-left: 80px;
}
#columns {
margin-bottom: 20px;
/*border-top: 1px solid #999;*/
}
#contact {
text-align: center;
color: #666;
font-size: 12px;
margin-top: 35px;
padding-top: 5px;
border-top: 1px solid #999;
}
#contact span {
margin: 0 10px;
}
.column {
float: left;
width: 290px;
text-align: center;
padding: 0 15px;
}
.tech {
float: left;
width: 135px;
text-align: left;
}
.clearfix:before, .clearfix:after {
content: ".";
display: block;
height: 0;
overflow: hidden;
visibility: hidden;
}
.clearfix:after {
clear: both;
}