-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.css
96 lines (96 loc) · 1.67 KB
/
main.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
body{
font-family: Arial, Helvetica, sans-serif;
}
.parent {
width: 550px;
height: 300px;
background-color: #ffffff;
margin: auto;
text-align: center;
position: relative;
}
.one,.two{
background-color: #EEE;
width:calc(50% - 50px);
height: 280px;
position: absolute;
}
.one{
top: 10px;
left: 16px;
}
.two{
top: 10px;
right: 16px;
}
.basic{
position: absolute;
border-radius: 11px;
width: calc(80% );
height:45px;
background-color: #03a9f4;
font-weight: bold;
font-size: 20px;
top: 13px;
left: 22px;
text-align: center;
color: white;
line-height: 45px;
}
.free{
border-radius: 50%;
width: 185px;
height: 185px;
background-color: #DDD;
position: absolute;
top: 78px;
left: 21px;
line-height: 185px;
font-size: 30px;
}
.pro{
position: absolute;
border-radius: 11px;
width: calc(80% );
height:45px;
background-color: #03a9f4;
font-weight: bold;
font-size: 20px;
top: 13px;
left: 22px;
text-align: center;
color: white;
line-height: 45px;
}
.dollar{
border-radius: 50%;
width: 185px;
height: 185px;
background-color: #DDD;
position: absolute;
top: 78px;
left: 21px;
line-height: 185px;
font-size: 30px;
}
.one::after{
content: "";
position: absolute;
width: 1px;
height: 280px;
background-color: #03a9f4;
top: 0px;
left: 115%;
}
.two::before{
content: "Or";
position: absolute;
width: 30px;
height: 30px;
background-color: #03a9f4;
top: calc(50% - 20px);
left: -22%;
color: white;
line-height: 30px;
border-radius: 50%;
}