-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (45 loc) · 738 Bytes
/
Copy pathstyles.css
File metadata and controls
53 lines (45 loc) · 738 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
46
47
48
49
50
51
52
53
body {
text-align: center;
font-family: "Roboto", sans-serif;
margin: 2em;
}
.colours-container {
display: flex;
}
.colour-div {
width: 18vw;
height: 70vh;
box-shadow: 5px 5px 5px rgb(114, 114, 114, 0.7);
border-radius: 10px;
margin: 0.5em;
}
.shuffle {
color: rgb(43, 43, 43, 0.8);
background: none;
border: none;
float: right;
margin: 7px 7px 0 0;
font-size: 15px;
cursor: pointer;
}
.shuffle:hover {
color: rgb(187, 47, 47);
}
.colour-div p {
font-size: 1.2em;
margin-top: 10px;
}
.colour {
height: 90%;
border-radius: 10px 10px 0 0;
}
footer {
position: absolute;
bottom: 10px;
font-size: 12px;
}
a {
text-decoration: none;
color: rgb(0, 0, 143, 0.9);
font-weight: 600;
}