-
Notifications
You must be signed in to change notification settings - Fork 0
/
price.css
73 lines (69 loc) · 1.56 KB
/
price.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
/* margin-top: 15px; */
font-family: 'Quicksand', sans-serif;
width: 500px;
padding: 6px 5px;
background-color: #426ea128;
}
.main{
background-image: url("https://transparenttextures.com/patterns/cubes.png");
background-color: rgb(255, 255, 255);
border-radius: 10px;
border: 2px solid rgba(95, 152, 250, 0.112);
height: 100%;
}
.back-page{
display: flex;
justify-content: space-around;
align-items: center;
border: 2px solid rgba(224, 224, 224, 0.205);
border-radius: 10px;
height: 30px;
margin: 4px 10px;
background-color: rgba(224, 224, 224, 0.205);
}
.back-head{
border: 2px solid white;
background-color: white;
border-radius: 10px;
font-size: 1rem;
padding: 1px 10px;
}
.head{
box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
background-color: #74EBD5;
background-image: linear-gradient(90deg, #74EBD5 0%, #9FACE6 100%);
border-radius: 15px;
margin: 10px 4px 5px;
padding: 5px 0;
display: flex;
justify-content: space-around;
align-items: center;
}
#head-logo{
width: 14%;
height: 14%;
}
#head-title{
font-size: 1.1rem;
font-weight: bold;
}
.card{
border: 2px solid rgb(34, 37, 37);
border-radius: 10px;
margin: 5px 6px;
padding: 5px 10px;
display: flex;
align-items: center;
justify-content: space-between;
transition-duration: 100ms;
}
.content1{
font-size: 1.5rem;
text-align: center;
}