forked from k-laz/DiscordInvest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (44 loc) · 972 Bytes
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body{
background-color: #2c2f33;
font-family: Roboto, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
a{
text-decoration: none;
color: #ffffff;
}
.title{
color: #ffffff;
background-color: #23272a;
display: flex;
padding: 0 600px;
align-items: center;
justify-content: center;
margin-bottom: 50px;
padding-top: 50px;
font-size: 36px;
}
.main_box{
display: flex;
flex-direction: column;
gap: 20px;
width: 800px;
height: 400px;
background-color: #99aab5;
border-radius: 8px;
align-items: center;
justify-content: center;
}
.button{
font: bold 32px Arial;
text-decoration: none;
color: #ffffff;
padding: 4px 10px 4px 10px;
background-color: #7289da;
border: 1px solid #7289da;
border-radius: 8px;
}