-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
65 lines (65 loc) · 987 Bytes
/
index.css
File metadata and controls
65 lines (65 loc) · 987 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
h1{
font-size:100px;
text-align:center;
color:solid black;
text-decoration: solid;
}
*{
padding:0px;
margin:0px;
}
header{
border: 1px solid black;
margin-left:80%;
text-align:center;
font-size:150%;
background-color:yellowgreen;
}
div{
background-color:aqua;
border:5px solid black;
padding:0px;
margin: 10px 10px 10px 10px;
}
@media(min-width:992px)
{
.p1{
width:30%;
float:left;
}
.p2{
width:30%;
float:left;
}
.p3{
width:30%;
float:left;
}
}
@media(min-width:768px) and (max-width:991px)
{
.p1{
width:46%;
float:left;
}
.p2{
width:46%;
float:right;
}
.p3{
width:97%;
float:left;
}
}
@media(max-width:767px)
{
.p1{
width:95%;
}
.p2{
width:95%;
}
.p3{
width:95%;
}
}