-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsolution.css
More file actions
70 lines (65 loc) · 914 Bytes
/
solution.css
File metadata and controls
70 lines (65 loc) · 914 Bytes
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
*
{
box-sizing: border-box;
padding: 0px;
margin: 0px;
}
.row{
width: 100%;
margin-left: 25px;
}
h1{
margin-top: 40px;
text-align: center;
}
.st{
padding-top: 0px;
position: relative;
height: 250px;
background-color: lightblue;
border: 1px solid black;
border-radius: 10px;
margin: 10px;
top:50px;
overflow:hidden;
}
h2{
position: absolute;
margin-top: 0px;
right: 0px;
border: 1px solid black;
border-radius: 5px;
top:-1px;
right: -1px;
background-color:white ;
}
p{
top:40px;
position: relative;
padding: 10px;
}
@media only screen and (min-width:992px){
.col-lg-4
{float:left;
width:30%;
}}
@media only screen and (max-width:767px){
.col-sm-12{
width:100%;
right:20px;
height:200px;
margin-right:2%;
clear:both;
}
}
@media only screen and (min-width:768px) and (max-width:991px)
{
.col-md-6{
float:left;
width:45%;
}
.col-md-12{
float:left;
width:93%;
}
}