-
Notifications
You must be signed in to change notification settings - Fork 0
/
responsive.css
132 lines (124 loc) · 3.05 KB
/
responsive.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
/* mobile to medium scase */
@media (min-width:570px) and (max-width:768px) {
#ds_result .dm_result_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 0 25px;
/* padding: 8px; */
box-sizing: border-box;
}
#ds_result .dm_result_wrapper .dm_result_wrapper_div {
width: 90%;
}
#ds_result .dm_card {
width: 90%;
margin-top: 25px;
}
#ds_result .dm_result_wrapper .dm_element_right {
width: 35%;
}
.dm_domain {
text-align: center;
width: 85%;
margin: 0 auto;
margin-top: 50px;
}
}
/* mobile to smal devices */
@media screen and (max-width:570px) {
.dm_domain .dm_domain_title h3 {
font-size: 25px;
list-style: 30px;
}
.dm_domain .domain_bottom_info {
font-size: 13px;
}
.dm_domain .domain_bottom_info .info_item{
}
.dm_domain {
text-align: center;
width: 85%;
margin: 0 auto;
margin-top: 50px;
}
#ds_result .dm_result_wrapper {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
padding: 8px;
box-sizing: border-box;
}
#ds_result .dm_result_wrapper .dm_result_wrapper_div {
width: 90%;
}
#ds_result .dm_card {
width: 90%;
margin-top: 25px;
}
#ds_result .dm_result_wrapper {
padding: 0 20px;
}
#ds_result .dm_result_wrapper .dm_element {
display: flex;
flex-direction: column;
justify-content: start;
align-items: start;
}
#ds_result .dm_result_wrapper .dm_element_right {
margin-top: 10px;
padding: 10px;
display: block;
border-top: 1px solid lightgray;
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
}
#ds_result .dm_result_wrapper .dm_btn {
padding: 7px 15px;
background-color: #61CE70;
color: #fff;
font-weight: 600;
font-size: 16px;
border-radius: 8px;
cursor: pointer;
text-transform: uppercase;
/* width: 40px; */
display: flex;
justify-content: center;
align-items: center;
/* float: right; */
}
}
/* from small devices */
@media (min-width:570px) {
}
/* custom responsive */
@media (min-width:768px) and (max-width:1000px){
#ds_result .dm_result_wrapper .dm_result_wrapper_div {
width: 60%;
}
#ds_result .dm_card {
width: 35%;
margin-top: 20px;
}
#ds_result .dm_result_wrapper .dm_element_right {
display: flex;
justify-content: space-between;
align-items: center;
width: 35%;
padding: 0px 15px;
}
.dm_domain {
text-align: center;
width: 90%;
margin: 0 auto;
margin-top: 50px;
}
#ds_result .dm_result_wrapper {
padding: 25px;
}
}