-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
executable file
·108 lines (89 loc) · 1.33 KB
/
styles.css
File metadata and controls
executable file
·108 lines (89 loc) · 1.33 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
107
body {
font-family: sans-serif;
margin: 0;
color: #333;
}
h1,
h2 {
font-family: Lato, sans-serif;
}
h1 {
color: white;
font-size: 48px;
margin-bottom: 0;
}
p, ul, ol {
line-height: 1.5;
}
a {
color: #38A88F;
}
header {
background: #DCF5F5;
text-align: center;
background: url(images/background.jpg);
background-size: cover;
background-attachment: fixed;
}
header img {
width: 200px;
border: 3px solid #FFF;
border-radius: 50%;
padding: 10px;
}
.padded {
padding: 50px 100px;
}
#about {
background: #FFCA59;
}
.about {
background: #FFCA59;
}
ul.websites {
padding: 0px;
margin-bottom: 1em;
}
ul.websites li{
list-style: none;
display: inline-block;
/* margin-bottom: 5px;*/
}
.websites a {
background: #38A88F;
padding: 10px 20px;
color: #fff;
text-decoration: none;
border-radius: 5px;
font-size: 24px;
display: block;
margin-right: 10px;
}
.websites a:hover {
background: #666;
color: #FFF;
text-decoration: none;
}
.links h2 {
color: #FF572B;
}
.contact {
text-align: center;
color: #FFF;
background: url(images/dark_embroidery.png);
background-repeat: bottom center;
/* background-size: cover;*/
background-attachment: fixed;
}
.contact h2 {
color: #fff;
}
.contact img {
width: 80px;
margin: 10px;
border-radius: 50%;
}
.contact img:hover {
background-color: #0099FF;
opacity: .5;
}