-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
66 lines (54 loc) · 1007 Bytes
/
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
body{
background-color: black;
}
nav{
background-color: black;
}
.width{
width: 500px;
height: auto;
}
.color{
color: #ff6014;
}
.color-bg{
background-color: #ff6014;
}
.color-border{
color: #ff6014;
}
.black{
background-color: black;
}
nav a:hover{
text-transform: uppercase;
color: #ffc107 !important;
text-decoration: underline;
}
a:hover{
text-transform: uppercase;
font-weight: bold;
}
.anchor{
text-decoration: none;
color: white;
}
.line{
border-top: 1px solid white;
}
#myVideo{
width: 100%;
}
.fourth {
border-color: #f1c40f;
color: #fff;
background-image: -webkit-linear-gradient(45deg, #f1c40f 50%, transparent 50%);
background-image: linear-gradient(45deg, #f1c40f 50%, transparent 50%);
background-position: 100%;
background-size: 400%;
-webkit-transition: background 300ms ease-in-out;
transition: background 300ms ease-in-out;
}
.fourth:hover {
background-position: 0;
}