-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdogstyle.css
More file actions
120 lines (102 loc) · 1.6 KB
/
Copy pathdogstyle.css
File metadata and controls
120 lines (102 loc) · 1.6 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
110
111
112
113
114
115
116
117
118
119
120
*{
box-sizing:border-box;
}
body{
margin:0;
background:#fffbea;
font-family:Arial,sans-serif;
}
.page{
max-width:420px;
margin:0 auto;
background:#FFE26D;
padding:0;
border-radius:12px;
overflow:hidden;
}
.image-grid img,
.side-img img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
}
/* Image grid */
.image-grid{
display:grid;
grid-template-columns:repeat(4, 1fr);
gap:16px;
padding:20px;
}
.large-img{
background:white;
height:180px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
grid-column:span 2;
}
.small-img{
background:white;
height:100px;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:13px;
}
/* Info section */
.info-section{
display:flex;
gap:16px;
padding:0 20px 0 0;
margin-bottom:20px;
}
.title-box{
flex:2;
background:#FFF2BD;
padding:18px;
border-radius:0 28px 28px 0;
}
.title-box h1{
margin:0 0 0px 0;
font-size:28px;
}
.title-box p{
font-size:13px;
line-height:1.4;
}
.side-img{
flex:1;
background:white;
border-radius:10px;
display:flex;
align-items:center;
justify-content:center;
font-size:14px;
}
/* Links section */
.links{
background:#FFF2BD;
padding:24px 20px;
border-radius:40px 40px 0 0;
display:grid;
grid-template-columns:1fr 1fr;
gap:16px;
margin-top:10px;
}
.link-btn{
background:#FFE26D;
padding:12px;
border-radius:8px;
text-align:center;
text-decoration:none;
color:black;
font-size:14px;
transition:0.3s;
}
.link-btn:hover{
background:#ffda47;
}