forked from hackyourfuturecanada/Week3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (82 loc) · 1.42 KB
/
style.css
File metadata and controls
106 lines (82 loc) · 1.42 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
body{
font-family: 'Libre Caslon Text', serif;
background: url(images/duver.jpeg) no-repeat fixed;
background-size: cover;
margin: 0;
padding: 0;
}
.topnav {
background-color: #333;
overflow: hidden;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;}
.topnav a:hover {
background-color: #ddd;
color: black;
}
h1{
font-size: 50px;
line-height: 1.5px;
}
p{
font-size: 18px;
line-height: 1.5;}
header,
section,
footer {
padding: 100px 150px;
}
/* HEADER */
header{
background-color: rgba(97, 41, 64, 0.6);
color: white;
text-align: center;}
/* ABOUT */
.about{
background-color: rgba(255, 153, 204, .5);
font-family: inherit;
}
#maddeler{
text-align: right;
font-size: 25px;
}
.hobbies{
background-color: rgba(170, 128, 255, .4);
text-align: center;
}
.hobbies img{
width: 180px;
border-radius: 50%;
margin: 10px;
}
.hobbies img:hover {
color: white;
}
.plans{
background: url(images/dagadam.jpg) no-repeat fixed;
background-size: cover;
font-size: 25px;
font-family: monospace;
}
/* FOOTER - contact information */
footer {
background-color: rgba(204, 255, 255, .4);
font-family: sans-serif;
color: rgb(153, 0, 51);
text-align: center;}
h4{
font-size: 36px;
}
i{
font-size: 75px;
color: purple;
}
i:hover{
color: blue;
}