-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (39 loc) · 664 Bytes
/
Copy pathstyle.css
File metadata and controls
45 lines (39 loc) · 664 Bytes
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
.container {
max-width: 390px;
margin: 0 auto;
}
.inner {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 200px 200px 200px;
gap: 10px;
justify-content: center;
align-items: center;
}
.item {
text-align: center;
}
.img {
max-width: 100%;
height: auto;
display: block;
margin: 0 auto;
}
.btn {
display: inline-block;
padding: 10px 20px;
border: none;
background: rgb(248, 168, 24);
border-radius: 10px;
color: #fff;
text-transform: uppercase;
font-weight: 700;
transition: background .2s linear;
margin-top: 10px;
}
.btn:hover {
background: lightgreen;
}
.usercard {
text-align: center;
}