-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (76 loc) · 1.52 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
79
80
81
82
83
84
85
86
body{
background: #5C573E;
}
main {
display: flex;
width: 100vw;
height: 100vh;
justify-content: center;
align-items: center;
}
.container {
display: flex;
flex-direction: column;
background: #C8D96F;
color: #5C573E;
width: 500px;
height: 600px;
align-items: center;
justify-content: space-evenly;
border-radius: 20px;
}
.title {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 70px;
font: bold 2.5rem serif;
margin-bottom: 20px;
}
.input {
display: flex;
width: 300px;
height: 50px;
justify-content: space-between;
align-items: center;
}
.input input {
width: 200px;
height: 50px;
border-radius: 5px;
border:none;
outline: 0;
font: bold 1.5rem serif;
text-align: center;
background: #A5B452;
}
.input label {
font: bold 1.3rem serif;
}
button {
width: 300px;
height: 40px;
font: bold 1.2rem serif;
background: #C4F7A1;
color: #5C573E;
outline: none;
border-radius: 5px;
cursor: pointer;
border:none;
}
.result {
display: flex;
margin-top: 2px;
align-items: center;
width: 300px;
height: 150px;
border-radius: 5px;
font: italic 1.5rem serif;
background: #A5B452;
color: #5C573E;
padding: 20px;
box-sizing: border-box;
user-select: none;
border:none;
}