-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcoupon.css
More file actions
120 lines (113 loc) · 2.07 KB
/
coupon.css
File metadata and controls
120 lines (113 loc) · 2.07 KB
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
117
118
119
120
/*button styling*/
._coupon__list > div{
padding: 5px 10px;
font-size:10px;
background:black;
height: auto;
color:white;
font-family:sans-serif;
font-weight:normal;
line-height:17px;
border-radius:3px;
cursor: pointer;
position:absolute;
right:10px;
}
._submit-overlay{
position:fixed;
width:220px;
height:200px;
top:50%;
left:50%;
margin-left: -110px;
margin-top: -120px;
background:white;
border:2px solid;
z-index: 9999999999999;
padding:10px;
box-sizing: border-box;
text-align: center;
}
._coupon__list h1{
font-family: serif;
font-size:26px;
margin-bottom:20px;
border-bottom: 1px solid #eee;
padding-bottom:15px;
line-height: 26px;
}
._coupon__list p{
font-family: sans-serif;
line-height:20px;
font-size:16px;
text-align:center;
font-weight: 500;
color: #868585;
margin-top:0px;
}
._coupon__list ul{
list-style-type: none;
margin:0;
padding:0;
}
._coupon__list ul li{
border-radius:3px;
border: 1px solid #e0e0e0;
padding:15px;
box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
text-transform: uppercase;
margin-bottom:20px;
}
._coupon__list .code{
background: #ff8d00;
color:#fff;
padding:5px;
display: inline-block;
border-radius:3px;
border: 1px solid #eaeaea;
cursor:pointer;
}
._coupon__list li p{
text-align:left;
margin-top:10px;
margin:0;
text-transform: none;
font-size:14px;
}
._coupon__list{
height:300px;
width:300px;
border-radius:6px;
box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
border:1px solid white;
background:white;
cursor:pointer;
padding:15px;
position:fixed;
top:90px;
right:5px;
z-index:9999999999;
overflow:hidden;
overflow-y: auto;
}
._coupon__button{
height:40px;
width:50px;
border-radius:6px;
border:1px solid white;
box-shadow: 0 3px 15px 0 rgba(0,0,0,0.25);
background:white;
cursor:pointer;
position:fixed;
font-family: serif;
color:#383636;
top:15px;
right:15px;
text-align:center;
z-index:9999999999;
display:flex;
justify-content:center;
align-items:center;
font-size:17px;
font-weight:bold;
}