-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.css
85 lines (72 loc) · 1.68 KB
/
project.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
78
79
80
81
82
83
84
body {
background: #FFF;
}
.theme-font {
font-family: 'Poiret One', cursive;
}
.nav {
border-radius: 100px 100px 0px 100px;
color: white;
background-color:#2F2E41;
transition: transform 0.5s;
}
.nav-shadow {
-webkit-box-shadow: 6px 6px 12px -6px rgba(122,114,255,1);
-moz-box-shadow: 6px 6px 12px -6px rgba(122,114,255,1);
box-shadow: 6px 6px 12px -6px rgba(122,114,255,1);
}
.nav:hover {
background: #2F2E41;
color: white;
transform:translateX(-20px);
}
#live {
background: white;
transition: transform 0.5s;
}
#live:hover {
background: #2F2E41;
color: white;
transform: scale(1.25,1);
}
.live:hover {
transform: scale(1.1,1);
}
.go {
-webkit-box-shadow: 4px 3px 12px -2px rgba(227,224,227,1);
-moz-box-shadow: 4px 3px 12px -2px rgba(227,224,227,1);
box-shadow: 4px 3px 12px -2px rgba(227,224,227,1);
transition: all 400ms ease-in-out;
}
.go:hover
{
-webkit-box-shadow: -5px 6px 13px 0px rgba(214,210,214,1);
-moz-box-shadow: -5px 6px 13px 0px rgba(214,210,214,1);
box-shadow: -5px 6px 13px 0px rgba(214,210,214,1);
transition: all 200ms ease-in-out;
transform: translateX(1.0em);
}
@charset "UTF-8";
:root {
--star-size: 25px;
--star-color: lightgrey;
--star-background: #fc0;
}
.Stars {
--percent: calc(var(--rating) / 5 * 100%);
display: inline-block;
font-size: var(--star-size);
font-family: Times;
line-height: 0.5;
}
.Stars::before {
content: '★★★★★';
letter-spacing: 3px;
background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
* {
position: relative;
box-sizing: border-box;
}