-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (41 loc) · 823 Bytes
/
style.css
File metadata and controls
45 lines (41 loc) · 823 Bytes
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
*{
border: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Urbanist', sans-serif;
}
body{
display: flex;
justify-content: center;
align-items: center;
background-color: salmon;
min-height: 100vh;
}
.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;
/* for bigger screens */
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: 0px 42px;
border-radius: 5px;
}
.meaning-container{
display: none;
}