-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
91 lines (76 loc) · 1.33 KB
/
stylesheet.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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.container{
width: auto;
margin-top: 40px;
}
.row{
width: 100%;
}
h1{
text-align: center;
}
h3{
margin-bottom: 20px;
border: 1px solid black;
width: 100px;
text-align: center;
position: relative;
float: right;
background-color: antiquewhite;
}
.col2 h3{
background-color: aqua;
}
.col3 h3{
background-color: yellowgreen;
}
p{
width: 90%;
margin-left: auto;
margin-right: auto;
margin-top: 50px;
}
.col{
border: 1px solid black;
margin: 10px;
background-color: skyblue;
height: max-content;
}
@media screen and (min-width: 992px){
.col{
float: left;
}
.col1{
width: 30%;
}
.col2{
width: 30%;
}
.col3{
width: 30%;
}
}
@media (min-width:768px ) and (max-width:991px){
.col{
float: left;
}
.col1{
width: 45%;
}
.col2{
width: 45%;
}
.col3{
width: 92%;
}
}
@media screen and (max-width: 767px){
.col div{
left: 79vw;
}
}