-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
40 lines (36 loc) · 745 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
body{
margin: 0;
display: flex;
min-height: 100vh;
justify-content: center;
align-items: center;
background-color: salmon;
font-family: 'Courier New', Courier, monospace;
}
.container{
background-color: rgba(255,255,255, .3);
padding: 28px;
border-radius: 7px;
box-shadow: 0 10px 10px rgba(0,0,0,.3);
width: 90%;
margin: 10px;
max-width: 450px;
text-align: center;
font-size: 18px;
font-weight: 500;
}
.heading{
font-size: 28px;
}
.input{
height: 53px;
width: 300px;
background-color: rgba(255,255,255, .6);
border-color: rgba(255,255,255, .4);
font-size: 16px;
padding: 0 42px;
border-radius: 5px;
}
.meaning-container{
display: none;
}