-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu-style.css
More file actions
87 lines (83 loc) · 1.57 KB
/
Copy pathmenu-style.css
File metadata and controls
87 lines (83 loc) · 1.57 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
scroll-behavior: smooth;
}
body{
background: rgba(0, 8, 7, 0.526);
}
.grid{
padding: 15px;
}
.grid::after{
content: '';
display: block;
clear: both;
}
.grid .col{
box-sizing: border-box;
width: 33.33%;
height: 300px;
float: left;
padding: 15px;
}
.grid .col-content{
text-align: center;
width: 100%;
height: 100%;
background: rgb(2, 248, 133);
border-radius: 35px 35px 35px 35px;
box-shadow: 5px 5px 15px 5px black;
}
.edita-links{
margin: 0 auto;
width: 100vh;
height: 100vh;
text-decoration: none;
font-weight: bold;
color: white;
text-shadow: 2px 2px 2px white;
border: 3px white solid;
text-align: center;
border-radius: 45px 45px 45px 45px;
}
.bttop {
position: absolute;
margin: 0 auto;
text-decoration: none;
border: 2px white solid;
color: white;
text-shadow: 2px 2px 2px white;
font-weight: bold;
border-radius: 25px 25px 25px 25px;
}
.edita-lorem{
text-align: center;
margin: 0 auto;
background: teal;
height: 100vh;
width: 100vh;
border-radius: 35px;
box-shadow: 5px 5px 15px black;
}
@media all and (max-width: 568px){
.grid .col {
width: 100%;
}
}
@media all and (min-width: 569px) and (max-width:768px){
.grid .col {
width: 50%;
}
}
@media all and (min-width: 769px) and (max-width:1200px){
.grid .col {
width: 33.33%;
}
}
@media all and (min-width: 1200px){
.grid .col {
width: 25%;
}
}