-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
59 lines (52 loc) · 992 Bytes
/
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100vh;
}
.cookie-container{
background: linear-gradient(260deg, #9b6c50, #4f2626 100%);
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
width: 20rem;
height: 10rem;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 1.2rem;
padding: 1rem;
box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5);
font-family: "Poppins", sans-serif;
overflow: hidden;
}
.text{
width: 80%;
}
.wholeCookie{
transform: scale(0.6rem);
padding-right: 1rem;
}
.cookie-title{
font-size: 1.2rem;
font-weight: lighter;
}
.cookie-subtitle{
font-weight: bold;
padding: 0.7rem 0rem;
font-size: 0.6rem;
}
button{
border-style: none;
padding: 0.5rem 1rem;
color: #4f2626;
font-family: "Poppins", sans-serif;
font-size: 0.6rem;
font-weight: bold;
border-radius: 0.3rem;
box-shadow: 0 0.1rem 1rem rgba(0, 0, 0, 0.3);
}