-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (65 loc) · 1.19 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
*{
font-family: monospace;
}
body{
font-family: monospace;
display: flex;
justify-content: center;
align-items: center;
height:100vh
}
.main{
width:600px;
box-shadow: 5px 10px;
padding: 20px;
border:1px solid;
}
div.input-main{
display: grid;
grid-template-columns: 1fr min-content;
gap: 1;
}
div.input-main input{
font-size: large;
font-weight:bold;
}
div.input-main button{
font-size: large;
border-style: none;
border-radius: 5px;
font-weight:bold;
}
div.range-main{
display: grid;
grid-template-columns: 1fr min-content;
}
div.range-main span{
padding: 10px;
font-size: large;
background-color: rgb(241, 239, 239);
border-radius: 10px;
margin: 10px;
}
div.options {
display: grid;
grid-template-columns: 1fr 1fr;
gap:10px;
}
div.option{
background-color: rgb(241, 239, 239);
padding: 10px;
font-size:20px;
border-radius: 5px;
cursor: pointer;
}
div.option label{
display: block;
cursor: pointer;
}
button.generate{
width: 100%;
font-size: 18px;
font-weight: 600;
padding: 3px;
margin-top: 10px;
}