-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
60 lines (50 loc) · 812 Bytes
/
index.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
body {
font-family: Arial, Helvetica, sans-serif;
background: linear-gradient(to right, #006d1f, #6c7715);
}
a {
text-decoration: none;
font-weight: bold;
}
.linkBox {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
background-color: #ffd9006a;
color: #fff;
padding: 12px 24px;
border: none;
cursor: pointer;
border-radius: 25px;
margin: 10px;
width:75%;
max-width: 500px;
}
.linkBox:hover {
background-color: #609e4b;
}
.links {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
display: block;
margin: 0 auto;
width: 100%;
height: 100%;
max-width: 500px;
max-height: 500px;
}
.socials {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.socials img {
max-width: 100px;
max-height: 100px;
margin-right: 20px;
}