-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (89 loc) · 1.66 KB
/
Copy pathstyles.css
File metadata and controls
102 lines (89 loc) · 1.66 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
*{
margin: 1px;
padding: 1px;
box-sizing: border-box;
background-color: bisque;
text-align: center;
font-family: 'Times New Roman', Times, serif;
}
hr {
clip-path: polygon(0% 50%, 15% 0%, 85% 0%, 100% 50%, 85% 100%, 15% 100%);
width: 35%;
margin: 5px auto;
}
h1 {
margin: 5px auto;
padding: 5px;
text-align: center;
}
.col{
position: relative;
background-color: bisque;
border: 1px solid black;
}
section div{
position: absolute;
top: 0px;
right: 0px;
border: solid black;
border-width: 1px 1px 2px 2px;
width: 125px;
text-align: center;
}
#d1, #d2, #d3, #d4, #d5, #d6 {
background-color: black;
color: white;
font-size: 20px;
margin: -1.5px 0 0 -1.5px;
}
.NAME {
color: #000000;
font-weight: bold;
}
p {
color: #222121ce;
font-style: italic;
}
/* only large devices */
@media (min-width: 992px) {
#s1, #s2, #s3, #s4, #s5, #s6 {
float: left;
width: calc(33.33% - 20px);
margin: 10px;
}
h2 {
margin-top: 6%;
padding: 5px;
}
}
/* only medium devices */
@media (min-width: 768px) and (max-width: 991px) {
#s1, #s2, #s3 {
float: left;
width: calc(50% - 20px);
margin: 10px;
height: 350px;
}
#s4, #s5, #s6 {
float: left;
width: calc(50% - 20px);
margin: 10px;
height: 430px;
}
h2 {
margin-top: 7%;
padding: 5px;
}
}
/* only small devices */
@media (max-width: 767px) {
.col {
float: left;
width: calc(100% - 20px);
margin: 10px;
}
h2 {
margin-top: 5%;
padding: 5px;
}
}