-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
42 lines (42 loc) · 817 Bytes
/
style.css
File metadata and controls
42 lines (42 loc) · 817 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@300&display=swap');
*{
font-family: 'Roboto Mono', monospace;
}
body
{background-image: url(https://i.gifer.com/S9CS.gif);
background-size: 100%;
background-attachment: fixed;
}
.main{
display: flex;
align-items: center;
flex-direction: column;
flex-wrap: wrap;
margin-top: 50px;
color: white;
}
.generate{
display: flex;
flex-direction: column;
font-size: 18px;
}
.generate_btn{
margin-top: 30px;
width: max-content;
margin-left: 75px;
outline: none;
color: black;
}
.generate input{
outline: none;
width: 15rem;
}
.ticker{
background: #000;
color: #FFF;
border: 1px solid #aaa;
padding: 0.9% 0.8% .1%;
display: flex;
align-items: center;
flex-direction: column;
}