-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
109 lines (95 loc) · 1.88 KB
/
Copy pathlayout.css
File metadata and controls
109 lines (95 loc) · 1.88 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
103
104
105
106
107
108
109
html {
background: rgb(235, 235, 235);
}
.showcase {
display: flex;
flex-direction: column;
}
.item {
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(45deg, coral, cornflowerblue);
/* background: url(zak-boca-w504XUUximQ-unsplash.jpg) no-repeat center; */
padding: 3%;
border: none;
border-radius: 1rem;
flex-direction: column;
gap: 1rem;
}
.layout-bg-img {
background: url('pexels-felix-mittermeier-956999.jpg') no-repeat center !important;
}
.page-heading {
text-align: center;
border-top: 1px solid #00000050;
border-bottom: 1px solid #00000050;
width: fit-content;
align-self: center;
padding: 8px 0;
}
.category > h2 {
margin: 0;
text-decoration: underline;
}
.showitem > h3 {
padding-left: 1rem;
}
.layout-line-segment {
content: "";
height: 1px;
width: 95%;
background: #00000050;
/* place-self: center; */
align-self: center;
}
.showoutputtext {
width: min-content;
border: none;
background: #eeeeee8a;
backdrop-filter: blur(10px);
padding: 0.5rem;
margin: 0;
text-align: center;
border-radius: 4px;
}
.showoutputtext:disabled {
color: black;
}
.mock-card-horizontal {
height: 7rem;
width: 11rem;
background: #eee;
border: none;
border-radius: 8px;
}
.mock-card-vertical {
height: 11rem;
width: 7rem;
background: #eee;
border: none;
border-radius: 8px;
}
.mock-card-square {
height: 7rem;
width: 7rem;
background-color: #eee;
border: none;
border-radius: 8px;
}
.item-flex-jc-ac-row {
display: flex;
justify-content: center;
align-items: center;
flex-direction: row !important;
background: linear-gradient(45deg, coral, cornflowerblue);
padding: 3%;
border: none;
border-radius: 1rem;
gap: 1rem;
flex-wrap: wrap;
}
.mock-height-20rem{
height: 20rem !important;
overflow-y: scroll;
}