-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcasainvacanza.scss
82 lines (73 loc) · 1.13 KB
/
casainvacanza.scss
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
$primary-color: lightblue;
@mixin circle($width) {
width: $width;
height: $width;
border-radius: $width/2;
}
html, body {
min-height: 100%;
}
nav {
margin-bottom: 20px;
font-family: "Pacifico";
font-size: 1.5em;
}
h1 {
font-size: 40px;
color: $primary-color;
}
main {
padding: 10px 0px;
line-height:2;
font-family: "Merriweather Sans", sans-serif;
text-align: justify;
}
footer {
padding: 10px 0px;
background: #80bfff;
color: white;
text-align: center;
font-size: 1.2em;
text-shadow: 2px 2px black;
a {
color: white;
}
a:hover {
color: #162955;
}
}
.myfoto {
position: relative;
overflow: hidden;
&:before {
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
content: "";
}
}
.myfoto-primary {
&:before {
background: $primary-color;
opacity: 0.4;
}
}
.frame {
@include circle(400px);
margin: 25px auto 40px auto;
img {
width: 100%;
border-radius: 50%;
}
}
.home-main {
font-family: "Marcellus SC", sans-serif;
text-align: center;
color: #162955;
text-shadow: 4px 4px 4px #aaa;
h2 {
margin: 45px 0px;
}
}