-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
75 lines (65 loc) · 1.15 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
body {
display: flex;
justify-content: center;
font-size: 15px;
font-family: 'Press Start 2P', cursive;
}
header{
line-height: 24px;
text-align: center;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
padding: 50px;
background-color: aqua;
margin-top: 20px;
}
.tag, .tag-result{
display: block;
/* margin-right: 5px; */
}
.minimum, .maximum{
display:flex;
gap: 10px;
align-items: center;
font-size: 20px;
}
.minimum{
margin-top: 30px;
}
#input-min, #input-max{
width: 200px;
height: 50px;
font-size: 20px;
outline: none;
border: 1px solid black;
border-radius: 10px;
padding: 5px;
font-family: 'Press Start 2P', cursive;
}
.button{
margin-top: 40px;
}
#btn-generate{
width: 280px;
height: 50px;
border-radius: 10px;
border-color: black;
font-size: 20px;
font-family: 'Press Start 2P', cursive;
}
.tag-result{
margin-top: 40px;
border: 4px solid yellow;
padding: 10px;
color: red;
border-radius: 50%;
}