-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
53 lines (44 loc) · 958 Bytes
/
style2.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
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Dancing+Script:wght@400;500;600;700&family=Montserrat:wght@300;500;700;800&family=Poppins:wght@100;400;600;700&display=swap");
.container {
min-height: 100vh;
font-family: "Poppins", sans-serif;
font-weight: 600;
max-width: 80vh;
margin: auto;
}
.container h1,h2{
margin: 23px 0;
}
.container form{
display: flex;
flex-direction: column;
}
.container form lable{
font-size: 25px;
}
.container form input[type='number'],select,label{
font-size: 25px;
width: 23vw;
margin-bottom: 23px;
}
.btn {
width: 144px;
padding: 5px 8px;
font-size: 20px;
background: #e0d0f5;
color: black;
border-radius: 13px;
cursor: pointer;
}
.output {
display: none;
}
.output table {
width: 50vw;
text-align: center;
border: 2px solid black;
font-size: 20px;
}
.output table th{
padding: 3px;
}