-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
67 lines (59 loc) · 1.48 KB
/
style.css
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
* {
color: ivory;
text-shadow: 1px 1px 2px black;
font-family: 'Staatliches', cursive;
text-align: center;
}
body {
background-image: linear-gradient( 135deg, #92FFC0 10%, #002661 100%);
background-repeat: no-repeat;
background-attachment: fixed;
}
.container {
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
}
.btn-grad {
background-image: linear-gradient(to right, #16222A 0%, #3A6073 51%, #16222A 100%);
}
.btn-grad {
padding: 15px 45px;
text-align: center;
transition: 0.5s;
background-size: 200% auto;
color: white;
box-shadow: 0 0 20px #eee;
border-radius: 10px;
display: block;
}
.btn-grad:hover {
background-position: right center;
color: #fff;
text-decoration: none;
}
.defaultCoin {
margin: 100px;
background: url("https://en.numista.com/catalogue/photos/royaume-uni/5f246015838b80.35326316-original.jpg");
background-size: cover;
border-radius: 50%;
width: 200px;
height: 200px;
}
.heads {
margin: 100px;
background: url("https://en.numista.com/catalogue/photos/royaume-uni/5f2460152d4d29.69215390-original.jpg");
background-size: cover;
border-radius: 50%;
width: 200px;
height: 200px;
}
.tails {
margin: 100px;
background-image: url("https://en.numista.com/catalogue/photos/royaume-uni/5f246015838b80.35326316-original.jpg");
background-size: cover;
border-radius: 50%;
width: 200px;
height: 200px;
}