-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
112 lines (105 loc) · 1.81 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
body{
background: #242A38;
font-size: 15pt;
font-family: sans-serif;
text-align: center;
}
h1{
color: #fff;
font-weight: 900;
text-decoration: underline;
}
.search-content{
height: 11px;
}
.ip-search{
background: #fff;
width: 250px;
padding: 15px;
border: 1px solid transparent;
border-radius: 10px 0 0 10px ;
outline: none;
}
.bx{
color: #fff;
background: #111;
padding: 17px;
border-radius: 0 10px 10px 0;
border: 1px solid transparent;
}
.ip-res{
margin-top:80px;
background: #fff;
width: 300px;
margin-left: 30px;
height: 430px;
border-radius: 10px;
opacity: 0;
}
.ip-res label{
font-size: 20px;
color: #888;
font-weight: 600;
margin-top: 20px;
}
.ip-res span{
font-weight: 900;
margin-top: 10px;
}
@media (min-width:768px){
.ip-search{
width: 400px;
}
.ip-res{
margin-left: 150px;
width: 450px;
}
}
@media (min-width:1024px){
.ip-search{
width: 400px;
}
.ip-res{
margin-left: 280px;
width: 450px;
}
}
@media (min-width:1440px){
.ip-search{
width: 400px;
}
.ip-res{
margin-left: 480px;
width: 450px;
}
}
@media (min-width:2560px){
.ip-search{
width: 600px;
}
.ip-res{
margin-left: 945px;
width: 600px;
}
}
@media (min-width:1280px){
.ip-search{
width: 400px;
}
.ip-res{
margin-left: 400px;
width: 450px;
}
.container{
margin-top: 10px;
}
}
@media (max-width:320px){
.ip-search{
width: 200px;
}
.ip-res{
margin-left: 10px;
width: 280px;
}
}