-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
124 lines (124 loc) · 2.45 KB
/
Copy pathstyle.css
File metadata and controls
124 lines (124 loc) · 2.45 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
121
122
123
124
@import url(https://fonts.googleapis.com/css?family=Rubik:300,regular,500,600,700,800,900,300italic,italic,500italic,600italic,700italic,800italic,900italic);
body{
margin:0px;
}
*{
box-sizing:border-box;
}
.bg{
height:100vh;
}
.head{
text-align:center;
}
.ipaddresscontainer{
position: absolute;
width:100%;
min-width:375px;
background-image:url("images/pattern-bg-desktop.png");
background-size:cover;
min-height:40vh;
}
.main-heading{
font-family:"Rubik";
color:white;
text-align:center;
font-weight:500;
}
.userinput{
font-size:18px;
padding:15px;
width:45%;
height:50px;
border-width:0px;
border-top-left-radius:15px;
border-bottom-left-radius:15px;
}
.input-container{
display:flex;
align-items:center;
justify-content:center;
margin-bottom: 25px;
}
.button1{
background-color:black;
padding:15px;
border-width:0;
font-size:18px;
width:5%;
height:50px;
border-top-right-radius:15px;
border-bottom-right-radius:15px;
}
.detail-style{
font-weight:500;
font-size:12px;
color:#969696;
font-family:"Rubik";
}
.detail{
text-align: left;
}
.resultstyle{
font-weight:500;
font-family:"Rubik";
color:#2B2B2B;
}
.details-container{
position: absolute;
z-index: 1;
left:10%;
right:10%;
padding: 20px;
margin:auto;
display: flex;
justify-content: space-around;
border-radius: 15px;
width:80%;
background-color:white;
}
.line{
color : #969696;
font-weight : 400;
border-left : 1px solid;
border-top:0px;
border-bottom:0px;
border-right:0px;
height : 60px;
margin-top:auto;
margin-bottom:auto;
}
#map{
position:absolute;
z-index: -1;
min-height:80vh;
width:100%;
}
@media (max-width:767px){
.ipaddresscontainer{
background-image: url("images/pattern-bg-mobile.png");
}
.main-heading{
font-size:18px;
text-align:center;
}
hr{
display:none;
}
.detail{
text-align: center;
}
.details-container{
padding: 10px;
display: inline;
text-align: center;
flex-direction: column;
justify-content: center;
align-items:center;
/* font-size:15px; */
width:50%;
}
h3{
font-size: 15px;
}
}