-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
77 lines (67 loc) · 1.33 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
body {
overflow-x: hidden;
}
a {
text-decoration: none;
color: #07c;
}
nav {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 60px;
}
header {
border-bottom: 1px solid rgb(197, 197, 197);
height: 40vmin;
background: url('images/title.svg') rgba(135, 234, 49, 0.3) no-repeat center center;
background-size: 90% 75%;
}
#title {
margin-top: 0.5rem;
margin-bottom: 0.5rem;
font-size: 12vmin;
font-family: 'Indie Flower', sans-serif;
color: white;
text-shadow: 0 1px gray, 0 -1px gray, -1px 0 gray, 1px 0 gray;
}
footer {
padding: 8vmin;
background: rgba(135, 234, 49, 0.3);
border-top: 1px solid rgb(197, 197, 197);
color: gray;
font-size: 1.1rem;
}
.feature-pic {
width: 180px;
height: 180px;
display: inline-block;
background-color: rgba(0, 0, 0, 0);
}
.feature-pic::before {
content: ' ';
position: absolute;
margin-top: -40px;
margin-left: -40px;
width: calc(180px + 40px * 2);
height: calc(180px + 40px * 2);
background-position: center center;
background-size: cover;
background-image: inherit;
background-repeat: no-repeat;
}
.feature img {
max-width: 70%;
}
.feature h2 {
margin-top: 0;
letter-spacing: 0.2rem;
font-family: 'Lato', sans-serif;
}
.feature p {
text-align: justify;
font-size: 1.2rem;
line-height: 1.8rem;
font-family: 'Roboto', sans-serif;
}