-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
118 lines (107 loc) · 2.36 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
112
113
114
115
116
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,100&family=Raleway:wght@100&family=Zen+Kurenaido&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Zen Kurenaido', sans-serif;;
}
.container{
width: 100%;
height: 100vh;
background: #9E9E9E;
display: flex;
align-items: center;
justify-content: center;
}
.coupon-card{
background: linear-gradient(135deg, #607D8B,#9E9E9E);
color: #fff;
text-align: center;
padding: 40px 80px;
border-radius: 15px;
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.8) ;
}
.logo{
height:10vh;
width: 17%;
border-radius: 0.3rem;
margin-bottom: 20px;
}
.coupon-card h3{
font-size: 20px;
margin-bottom: 10px;
font-weight: bold;
}
.coupon-card p{
font-size: 18px;
}
.coupon-row{
display: flex;
align-items: center;
margin: 25px auto;
width: fit-content;
}
#cpncode{
border:1px dashed #fff;
padding: 10px 20px;
color:black;
font-weight: bolder;
border-right: 0px;
}
#cpnbtn{
border:1px solid #fff;
padding: 10px 20px;
color: black;
cursor: pointer;
font-weight: bolder;
}
@media screen and (max-width: 500px ){
.coupon-card{
background: linear-gradient(135deg, #607D8B,#9E9E9E);
color: #fff;
width: 70%;
height: 70vh;
text-align: center;
padding: 40px 50px;
border-radius: 15px;
box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.8) ;
}
.coupon-card p{
font-size: 18px;
display: flex;
width: 11rem;
justify-content: center;
align-items: center;
margin: auto 1px;
}
.logo{
height:10vh;
width: 40%;
border-radius: 0.3rem;
margin-bottom: 20px;
}
#cpncode{
display: flexbox;
margin-left: 1.5rem;
border:1px dashed #fff;
padding: 10px 10px;
height: 3rem;
width: fit-content;
color:black;
font-weight: bolder;
border-right: 0px;
}
#cpnbtn{
border:1px solid #fff;
display: flex;
justify-content: center;
align-items: center;
height: 3rem;
width:fit-content;
padding: 10px 10px;
color: black;
cursor: pointer;
font-weight: bolder;
}
}
}