-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (89 loc) · 1.29 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@import url(https://fonts.googleapis.com/css?family=Roboto:500,100,300,700,400);
#view-source {
position: fixed;
/* display: block;*/
display: none;
right: 0;
bottom: 0;
margin-right: 40px;
/* margin-bottom: 40px; */
z-index: 900;
}
div.stars
{
width: 270px;
display: inline-block;
}
input.star
{
display: none;
}
label.star
{
float: right;
padding: 10px;
font-size: 36px;
color: #444;
transition: all .2s;
}
input.star:checked ~ label.star:before
{
content: '\f005';
color: #FD4;
transition: all .25s;
}
input.star-5:checked ~ label.star:before
{
color: #FE7;
text-shadow: 0 0 20px #952;
}
input.star-1:checked ~ label.star:before
{
color: #F62;
}
label.star:hover
{
transform: rotate(-15deg) scale(1.3);
}
label.star:before
{
content: '\f006';
font-family: FontAwesome;
}
p
{
font-family: 'Roboto Mono', monospace;
}
label.star {
font-size: 20px;
}
.legends {
width: 50%;
margin-left: 0px;
left: auto;
right: auto;
}
.stars {
width: 50%;
margin-left: auto;
left: auto;
right: auto;
}
body{
height: 100vh;
}
.page-footer {
padding-top: 20px;
width: 100vw;
}
@media only screen and (max-width:650px) {
.legends {
width: 100%;
margin-left: auto;
left: auto;
right: auto;
}
.stars {
width: 100%;
}
}