-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
111 lines (90 loc) · 1.4 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
106
107
108
109
110
111
body {
box-sizing: border-box;
text-align: center;
margin: 50px auto;
font-family: 'Red Hat Display', sans-serif;
background-image: url(images/pattern-background-desktop.svg);
background-repeat: repeat-x;
max-width: 450px;
max-height: 900px;
background-color: hsl(225, 100%, 94%)
}
p{
font-size: 16px;
}
.card-container{
background-color: white;
border-radius: 15px;
max-width: 450px;
}
.img img{
border-radius: 15px 15px 0px 0px;
}
.order-summary{
width: 80%;
margin: auto;
}
.plan{
display: grid;
grid-auto-flow: column;
width: 80%;
margin: auto;
background-color:hsl(225, 100%, 98%);
border-radius: 20px;
}
.plan img{
margin: auto;
}
.plan a{
margin: auto;
}
.text{
text-align: left;
}
.text h3{
margin-bottom: 5px;
}
.text p{
margin-top: 0px;
}
.change:hover{
text-decoration: none;
}
.button{
width: 80%;
margin: 20px auto;
background-color: hsl(245, 75%, 52%);
border-radius: 10px;
height: 40px;
font-weight: 900;
}
.button:hover{
opacity: 0.5;
}
.button a{
color: hsl(225, 100%, 94%);
text-decoration: none;
}
.cancel-order{
margin-bottom: 20px;
height: 50px;
}
.cancel-order a{
color:hsl(245, 75%, 52%);
text-decoration: none;
}
.cancel-order a:hover{
color: black;
}
footer{
margin-top: 50px;
}
@media screen and (max-width: 600px) {
.card-container {
width: 375px;
margin: auto;
}
.img img{
width: 375px;
}
}