-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrandomcolor.css
More file actions
73 lines (63 loc) · 1.33 KB
/
randomcolor.css
File metadata and controls
73 lines (63 loc) · 1.33 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
body {
background-color: burlywood;
text-align: center;
margin: 0;
padding: 0;
font-family: 'Segoe UI';
}
div {
height: 100px;
width: 500px;
border: 1px solid black;
margin: 20px auto;
padding: 20px;
}
button {
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 20px 0;
cursor: pointer;
border-radius: 8px;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a049;
}
footer {
display: flex;
background-color: rgb(0, 0, 0);
text-align: center;
justify-content: center;
padding: 10px 0;
}
footer a {
display: block;
color: white;
text-decoration: none;
padding: 14px 20px;
}
footer a.insta-handle, footer a.linkedin-handle {
padding: 14px 20px; /* Ensure padding for spacing */
}
footer a.insta-handle {
margin-right: 10px; /* Add space between logos */
}
@media screen and (max-width: 700px) {
footer {
flex-direction: column;
}
.flex-align-right {
margin-left: 0;
}
.btn {
height: 150px;
width: 150px;
margin: 1.5rem;
}
}