-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod2.css
More file actions
110 lines (89 loc) · 1.17 KB
/
Copy pathmod2.css
File metadata and controls
110 lines (89 loc) · 1.17 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
@media (min-width: 992px) {
.para1 {
width: 32%;
}
.para2 {
width: 32%;
}
.para3 {
width: 32%;
}
.inner
{
background-color:pink;
border: 1px solid black;
position:absolute;
left:85%;
top:-8%;
}
}
@media(min-width:768px) and (max-width: 991px)
{
.para1{
width:45%;
float:left;
}
.para2{
width:45%;
float :right;
}
.para3{
width:91%;
}
.inner
{
background-color:pink;
border: 1px solid black;
position:absolute;
left:86%;
top:-10%;
}
}
@media(max-width: 767px)
{
.para1{
width:99%;
}
.para2{
width:99%;
}
.para3{
width:99%;
}
.inner
{
background-color:pink;
border: 1px solid black;
position:absolute;
left:90%;
top:-14%;
}
}
.div
{
//position: relative;
border :10px;
}
.para1 , .para2 ,.para3
{
background-color: grey;
box-sizing: border-box;
text-align: center;
border: 1px solid black;
padding: 5%;
float: left;
margin : 0.5%;
position:relative;
}
.inner
{
background-color:pink;
border: 1px solid black;
position:absolute;
//left:90%;
//top:0%;
}
div .heading
{
text-align: center;
}