-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (81 loc) · 1.14 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
93
94
@import url("https://fonts.googleapis.com/css?family=Raleway:200,400,600,800,900");
body {
font-family: "Raleway", sans-serif;
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0),
rgba(0, 0, 0, 0.6)
),
url("./img/caro_homepage-2.jpg");
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
color: white;
}
.wrapper {
font-size: 3em;
font-weight: 200;
position: fixed;
bottom: 15vh;
left: 15vw;
}
.name {
font-size: 1.5em;
line-height: 90%;
}
.icons {
margin-top: 30px;
font-size: 1em;
}
.last {
font-weight: 800;
}
.text {
font-size: 0.4em;
font-weight: 400;
max-width: 50%;
}
a:link {
color: white;
text-decoration: none;
}
a:visited {
color: white;
text-decoration: none;
}
a:active {
color: white;
text-decoration: none;
}
#top,
#bottom,
#left,
#right {
background: white;
position: fixed;
}
#left,
#right {
top: 0;
bottom: 0;
width: 15px;
}
#left {
left: 0;
}
#right {
right: 0;
}
#top,
#bottom {
left: 0;
right: 0;
height: 15px;
}
#top {
top: 0;
}
#bottom {
bottom: 0;
}