-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (54 loc) · 866 Bytes
/
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
html {
font-family: monospace;
font-size: 20px;
background-color: #14171A;
color: #9DA2A5;
}
p {
margin: 0;
padding: 0;
line-height: 15px;
text-align: center;
}
.page{
top:10px;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
}
.settings{
display: flex;
flex-direction: column;
background-color: rgb(255, 255, 255);
border-radius: 10px;
padding:1rem;
}
#title {
padding-top: 15px;
}
#view {
padding-top: 30px;
}
.inp{
width: 50%;
}
#generate {
text-align: center;
width : 100px;
position: relative;
margin: 20px auto;
border: 1px solid #9DA2A5;
border-radius: 8px;
padding: 5px 10px;
cursor: pointer;
transition: all 0.2s;
}
#generate:hover {
background-color: #9DA2A5;
color: #14171A;
}
#generate:active {
background-color: #f6f6f6;
color: #14171A;
}