-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
89 lines (79 loc) · 1.45 KB
/
style.css
File metadata and controls
89 lines (79 loc) · 1.45 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
body {
/*animation: colorchange 50s; !* animation-name followed by duration in seconds*!*/
/*!* you could also use milliseconds (ms) or something like 2.5s *!*/
/*-webkit-animation: colorchange 50s; !* Chrome and Safari *!*/
background: linear-gradient(45deg, #FE6B8B 30%, #FF8E53 90%);
color: #000;
}
body a {
color: #FFF;
}
@keyframes colorchange
{
0% {
background: red;
color: #fff;
}
25% {
background: yellow;
color: #000;
}
50% {
background: blue;
color: #fff;
}
75% {
background: green;
color: #fff;
}
100% {
background: red;
color: #fff;
}
}
@-webkit-keyframes colorchange /* Safari and Chrome - necessary duplicate */
{
0% {
background: red;
color: #fff;
}
25% {
background: yellow;
color: #000;
}
50% {
background: blue;
color: #fff;
}
75% {
background: green;
color: #fff;
}
100% {
background: red;
color: #fff;
}
}
.full {
min-height: 100vh;
}
.full > .container {
padding-top: 5%;
}
.full > .container h2 {
margin-bottom: 0px;
}
.full > .container .location {
margin-bottom: 20px;
}
@media (max-width: 40.0rem) {
.full h2, h3, h4 {
text-align: center;
}
.full > .container {
padding-top: 15px;
}
body {
padding-bottom: 30px;
}
}