-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdd.css
More file actions
70 lines (67 loc) · 1.04 KB
/
Copy pathdd.css
File metadata and controls
70 lines (67 loc) · 1.04 KB
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
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.container {
height: 100vh;
width: 100vw;
background-color: #acd8aa;
}
.flex {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
gap: 30px;
}
.main {
/* height: fit-content; */
overflow: hidden;
width: 80vw;
border: 1px solid black;
border-radius: 10px;
background-color: #f9bdc8;
box-shadow: 1px 1px 10px;
}
.heading {
background-color: #f48498;
height: 10vh;
}
.content {
margin: 10vh;
}
input {
height: 8vh;
width: 90%;
text-align: center;
border: 1px solid;
border-radius: 10px;
font: 400;
font-size: larger;
text-transform: capitalize;
}
button {
height: 8vh;
width: 90%;
border: 1px solid;
border-radius: 10px;
}
button:hover {
box-shadow: 1px 1px 10px black;
translate: (-2px);
background-color: #f48498;
}
.meaning{
height: 30px;
padding: 10px;
margin: 10px;
font-size: 25px;
}
.example{
/* height: 30px; */
font-size: 25px;
margin: 10px;
padding: 10px;
margin-top: 20px;
}