-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbot.css
64 lines (64 loc) · 1.24 KB
/
bot.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
html, body{
height: 100%;
}
body{
margin: 0;
padding: 0;
font-family: "Quicksand", sans-serif;
}
.background{
background: url("https://i.imgur.com/TkiAauA.jpg");
height: 600px;
width: 1300px;
background-size: cover;
margin: 0 auto;
margin-top: 30px;
}
.bot-card{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 50%;
margin: auto;
padding: 50px;
}
.top{
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
}
.img-bot{
display: flex;
flex-direction: row;
justify-content: flex-start;
width: 100%;
}
.bot-button{
background: #2C3E50;
padding: 6px 20px;
margin: 5px;
color: #FFF;
text-decoration: none !important;
border-radius: 5px;
max-width: 150px;
display: inline;
text-align: center;
position: relative;
transition: 500ms;
}
.bot-button:hover, .img-bot:hover, .bot-vote:hover{
box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.2);
transition: 500ms;
}
.top, .bottom{
width: 100%;
}
.bot-buttons{
display: flex;
}
.bot-name-short{
margin-left: 5px;
margin-top: 15px;
}