-
Notifications
You must be signed in to change notification settings - Fork 3
/
style2.css
51 lines (45 loc) · 907 Bytes
/
style2.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
body {
background: #007bff;
background: linear-gradient(to right, #0062E6, #33AEFF);
}
label.radio {
cursor: pointer
}
label.radio input {
position: absolute;
top: 0;
left: 0;
visibility: hidden;
pointer-events: none
}
label.radio span {
padding: 4px 0px;
border: 1px solid red;
display: inline-block;
color: red;
width: 100px;
text-align: center;
border-radius: 3px;
margin-top: 7px;
text-transform: uppercase
}
label.radio input:checked+span {
border-color: red;
background-color: red;
color: #fff
}
.ans {
margin-left: 36px !important
}
.btn:focus {
outline: 0 !important;
box-shadow: none !important
}
.btn:active {
outline: 0 !important;
box-shadow: none !important
}
.card-product {
box-shadow: 0 8px 17px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
transition: all .55s ease-in-out;
}