-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
102 lines (87 loc) · 1.6 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
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
h1{
color: black;
font-family: 'Lato', sans-serif;
font-weight: 900;
font-size: 50px;
text-align: center;
}
h1: hover {
color: grey;
}
h2 {
color: green;
font-family: 'Lato', sans-serif;
font-size: 38px;
}
p {
font-family: 'Lato', sans-serif
color: green;
font-weight: 900;
letter-spacing: 0.75px;
}
a {
text-decoration: none;
font-family: 'Montserrat', sans-serif
font-weight: ;
color: #157F1F;
}
a:hover {
color:green;
}
.banner {
background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1510274460854-4b7ad642d3a9?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1050&q=80");
background-size: cover;
background-position: center;
text-align: center;
padding: 50px;
}
.banner h1 {
color:green;
text-align: center;
}
.banner p {
opacity: 0.8;
color:green;
font-family: 'Lato', sans-serif;
font-size: 28px;
}
.btn-mint {
background-color: green;
color: white;
letter-spacing: 0.5px;
padding: 8px 24px;
border-radius: 4px;
}
.btn-mint:hover {
background-color: green;
color: #C4F1F7;
}
.container {
width: 700px;
margin: 10px auto;
color: #CE8147;
text-align: center;
}
.card-white {
background-color: white;
width: 350px;
padding: 24px;
margin: 16px auto;
border-radius: 4px;
box-shadow: 2px 3px 20px rgba(0,0,0,0.03);
}
.card-white img {
width: 350px;
height: 350px;
object-fit: cover;
}
.footer {
background-color: #CE8147;
color: white;
letter-spacing: 0.5px;
font-family: 'Lato', sans-serif
}
.cards {
display: flex;
justify-content: space-around;
}