-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (93 loc) · 1.6 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
/* background-image: url("./images/background.png");
background-position: center;
background-size: cover; */
width: 100%;
height: 100vh;
font-family: "Montserrat", sans-serif;
background-color: #e7f5ff;
position: relative;
}
.primary-buttons-container {
display: flex;
gap: 10px;
padding: 32px;
justify-content: center;
align-items: center;
}
.btn-primary {
font-family: "Montserrat", sans-serif;
letter-spacing: 1px;
background-color: #4dabf7;
border: none;
padding: 14px 28px;
font-size: 20px;
border-radius: 20px;
color: #fff;
cursor: pointer;
text-transform: uppercase;
}
.card-container {
max-width: 350px;
padding: 24px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
display: flex;
flex-direction: column;
gap: 16px;
background-color: #fff;
text-align: center;
transition: visibility 0s, opacity 0.5s linear;
z-index: 99999;
}
.cls-btn-conatiner {
text-align: right;
}
.cls-btn {
width: 32px;
height: 32px;
padding: 5px;
background: none;
border: none;
border-radius: 50%;
cursor: pointer;
}
.cls-btn:hover {
background-color: #e7f5ff;
}
h1 {
font-size: 24px;
font-weight: 600;
}
.rating-buttons {
padding: 0px;
align-items: center;
justify-content: center;
padding: 8px;
}
.btn-rating {
height: 32px;
width: 32px;
stroke: #1c7ed6;
}
.show {
display: block;
}
.hide {
display: none;
}
.overlay_container {
position: absolute;
height: 100vh;
width: 100%;
top: 0;
backdrop-filter: blur(3px);
z-index: 5;
}