-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
111 lines (100 loc) · 1.77 KB
/
Copy pathlayout.css
File metadata and controls
111 lines (100 loc) · 1.77 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
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
h1 {
font-size: 40px;
}
body {
background-color: #4a115c;
color: white;
font-size: 20px;
text-align: center;
font-family: 'Lato', sans-serif;
}
a:link {
color: pink;
background-color: transparent;
text-decoration: underline;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: underline;
}
a:hover {
color: magenta;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: magenta;
background-color: transparent;
text-decoration: underline;
}
.logo-container {
display: flex;
justify-content: center;
align-items: center;
gap: 20px;
padding: 10px;
}
.logo {
max-width: 100px;
height: auto;
border: 3px solid #777;
border-radius: 100%;
}
.logo2 {
max-width: 50px;
color: white;
height: auto;
filter: invert(100%);
}
.column {
float: left;
width: 50%;
box-sizing: border-box;
padding-right: 15px;
}
.cat-label {
margin: 0;
}
.row:after {
content: "";
display: table;
clear: both;
}
/* Add border to the right of the columns */
.column {
border-right: 3px solid #777;
}
/* Remove border from the last column */
.column:last-child {
border-right: none;
}
.bigimage {
max-width: 1024px;
border: 10px solid #777;
border-radius:100%;
}
.catimage {
max-width: 400px;
border: 5px solid #777;
}
@media screen and (max-width: 600px) {
.bigimage {
max-width: 1024px;
width: 100%;
}
.column {
width: 100%;
border-right: 0px
}
.logo {
width: 100%;
}
.logo2 {
width: 100%;
}
.catimage {
width: 100%;
}
}