-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathprofilePage.css
90 lines (86 loc) · 1.6 KB
/
profilePage.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
.profileStyle{
color:black;
}
.formDiv{
width: 50%;
margin-left: auto;
margin-right: auto;
margin-top: 5%;
/*box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);*/
box-shadow: 0px 0px 5px 1px lightgrey;
border-radius: 5px;
}
h2{
text-align: center;
padding: 2%;
border-bottom: 3px solid #ededed;
}
.arrowLeft{
font-size: 230% !important;
margin-left: 2%;
cursor: pointer;
}
.noUser{
margin-top: 21%;
margin-left: 32%;
opacity: 0.5;
font-size: 250%;
}
/* Add padding to container elements */
.container {
padding: 16px;
min-height: 500px
}
.channels{
margin-top: 10%;
}
/* Clear floats */
.clearfix::after {
content: "";
clear: both;
display: table;
}
/* Change styles for cancel button and signup button on extra small screens */
@media screen and (max-width: 300px) {
.signupbtn {
width: 100%;
}
}
/*star rating*/
.ratings {
position: relative;
vertical-align: middle;
display: inline-block;
color: #b1b1b1;
overflow: hidden;
}
.full-stars {
position: absolute;
left: 0;
top: 0;
white-space: nowrap;
overflow: hidden;
color: #fde16d;
}
.empty-stars:before, .full-stars:before {
content:"\2605\2605\2605\2605\2605";
font-size: 14pt;
}
.empty-stars:before {
-webkit-text-stroke: 1px #848484;
}
.full-stars:before {
-webkit-text-stroke: 1px orange;
}
/* Webkit-text-stroke is not supported on firefox or IE */
/* Firefox */
@-moz-document url-prefix() {
.full-stars {
color: #ECBE24;
}
}
/* IE */
<!--[if IE]> .full-stars {
color: #ECBE24;
}
<![endif]-->