-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (74 loc) · 1.21 KB
/
style.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
* {
box-sizing: border-box;
}
body {
margin: 0;
padding: 0;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
h1 {
text-align: center;
}
.sush {
background-color: gray;
border: 1px solid black;
}
.beef {
background-color: olivedrab;
border: 1px solid black;
}
.chic {
background-color: orchid;
border: 1px solid black;
}
.title {
position: absolute;
right: 0px;
top: 0px;
margin: 0;
padding: 5px 15px 5px 15px;
font-weight: bold;
letter-spacing: 2px;
}
.span1 {
/* display: inline-block; */
float: left;
/* width: 32%; */
background-color: gainsboro;
margin-left: 10px;
padding: 5px;
padding-top: 7%;
position: relative;
border: 1px solid black;
}
@media (min-width: 992px) {
.span1 {
/* display: inline-block; */
/* float: left; */
width: 32%;
/* background-color: gainsboro;
margin-left: 10px;
padding: 5px;
padding-top: 7%;
position: relative; */
}
}
@media (min-width: 768px) and (max-width: 991px) {
.a1,
.a2 {
width: 48%;
float: left;
}
.a1 {
margin-right: 10px;
}
.a3 {
margin: 30px 10px 30px 10px;
}
}
@media (max-width: 767px) {
.span1 {
display: block;
margin: 10px 30px 10px 30px;
}
}