-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
91 lines (80 loc) · 1.18 KB
/
style.css
File metadata and controls
91 lines (80 loc) · 1.18 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
/* reset css */
*{
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
}
body{
font-family: 'Roboto', sans-serif;
font-size: 15px;
color: #777;
line-height: 1.5;
}
p{
line-height: 2;
font-size: 1.5;
}
a, a:hover{
color: #333;
text-decoration: none;
}
h1,h2{
font-weight: bold;
color: #fff;
}
h1{
font-family: 'Mrs Sheppards', cursive;
font-size: 5em;
mix-blend-mode: difference;
}
@media screen and (min-width: 991px){
h1{
font-size: 10em;
}
}
h2{
padding: 10px;
}
h3 h4{
color: #111;
}
h3{
margin: auto;
font-size: 36px;
padding: 15px;
text-align: center;
}
h4{
margin: auto;
}
li{
text-align: center;
}
.jumbotron {
background-image: url("img/vadim-sherbakov-68-unsplash.jpg");
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
height: 100vh;
position: relative;
text-align: center;
padding-top: 30vh;
}
.container {
margin-top: 30px;
margin-bottom: 30px;
}
.cat {
width: 100%;
height: auto;
}
footer{
padding: 15px;
background-color: #333;
width: 100%;
margin: 0;
}
footer p{
color: #ccc;
}