-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
76 lines (65 loc) · 1.12 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
76
*{
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
body{
font-family: 'Press Start 2P', cursive;
display: flex;
justify-content: center;
font-size: 15px;
}
header{
line-height: 24px;
text-align: center;
}
.container{
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
background-color: aqua;
margin-top: 20px;
padding: 50px;
}
.tag, .tag-result{
display: block;
}
.tag-result{
border: 4px solid yellow;
border-radius: 50%;
padding: 10px;
margin-top: 40px;
color: red;
}
.minimum,
.maximum{
display: flex;
gap: 20px;
align-items: center;
}
.minimum{
margin-top: 30px;
}
#input-min,
#input-max{
width: 200px;
height: 50px;
font-size: 20px;
outline: none;
border: 1px solid #343434;
padding: 10px;
border-radius: 10px;
font-family: 'Press Start 2P', cursive;
}
.button{
margin-top: 40px;
}
#btn-generate{
width: 280px;
height: 50px;
border-radius: 10px;
border: 1px solid #343434;
font-family: 'Press Start 2P', cursive;
font-size: 20px;
}