-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
55 lines (47 loc) · 873 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
*{
font-family: Arial, Helvetica, sans-serif;
margin: 0;
box-sizing: border-box;
}
#mainDiv{
height: 100vh;
width: 100vw;
background-color: aliceblue;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: start;
}
#outputContainer{
width: clamp(50vw, 80vw, 1000px);
}
#inputContainer{
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#inputContainer *{
margin: 10px;
}
#inputContainer textarea{
margin: 10px;
height: 61.5px;
}
#numberInputContainer input{
height: 49px;
width: 49px;
aspect-ratio: 1/1;
margin: 0;
}
#numberInputContainer{
height: 61.5px;
display: flex;
flex-direction: column;
flex-wrap: nowrap;
align-items: center;
justify-content: center;
}
#numberInputContainer h6{
margin: 0px;
}