-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
117 lines (99 loc) · 1.9 KB
/
styles.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
114
115
116
117
body{
background-color: hsl(216, 12%, 8%);
}
h1{
font-weight: 700;
}
p{
font-size: 15px;
color: hsl(217, 12%, 63%);
}
h6{
margin-top: 8px;
}
img{
max-width: 10%;
margin-bottom: 10%;
}
.card{
background-color: hsl(213, 19%, 18%);
color: #fff;
font-family: "OverPass";
max-width: 30%;
margin: auto;
margin-top: 10%;
padding: 2%;
border-radius: 10%;
}
.button-ratings{
position: relative;
padding: 2% 2% 2% 10%;
}
.btn1{
background-color: hsl(210, 5%, 17%);
color: hsl(217, 12%, 63%);
border-radius: 100%;
text-align: center;
margin-right: 15px;
border: none;
padding: 5px 10px 5px 10px;
width: 35px;
}
.btn{
margin-top: 20px;
font-family: "OverPass";
cursor: pointer;
border-radius: 25px;
background-color: hsl(25, 97%, 53%);
}
.btn:hover{
background-color: rgb(0, 0, 0);
}
.btn1:hover{
background-color: rgb(60, 60, 65);
}
.thankyou-box{
display: none;
background-color: hsl(213, 19%, 18%);
color: #fff;
font-family: "OverPass";
max-width: 30%;
margin: auto;
margin-top: 10%;
padding: 2%;
border-radius: 10%;
text-align: center;
}
.thankyou-img{
max-width: 50%;
}
.thankyou-rating{
margin: auto;
color: hsl(25, 97%, 53%);
text-align: center;
border-radius: 20px;
background-color: hsl(214, 21%, 31%);
max-width: 60%;
margin-bottom: 5%;
padding: 0.5%;
}
.btn-selected{
color: #fff;
}
@media screen and (max-width: 600px){
.card{
max-width: 70%;
margin: 15%;
border-radius: 10%;
}
.btn1{
max-width: 10%;
padding: 0%;
}
.thankyou-box{
display: none;
max-width: 70%;
margin: 15%;
border-radius: 10%;
}
}