-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (59 loc) · 1.04 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
* {
margin:0;
padding:0;
}
html{
background-color:rgb(38, 36, 36);
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 1 rem;
background-color: rgb(46, 22, 177);
}
h1{
color:bisque;
background-color: rgb(46, 22, 177);
padding: 0.5rem;
}
.wordinputsection{
padding-top: 1rem;
padding-bottom: 1rem;
font-size: 18px;
background-color: rgb(46, 22, 177);
}
label{
color:aliceblue;
padding-left:0.5rem;
padding-top: 5rem;
}
header{
background-color: aqua;
padding-left: 0.5rem;
padding-top: 1.4rem;
}
.meaningsection1{
font-size: 1.5rem;
display: flex;
justify-content: center;
}
.meaningsection2{
font-size: 1rem;
display: flex;
justify-content: center;
}
input{
border: 5px solid red ;
height:4vh;
border-radius:1vw;
outline:-6px solid black;
font-size: 1rem;
max-width: fit-content;
}
#logo {
width:100px;
height:100px;
display:flex;
justify-content: center;
align-items: center;
border-radius: 50px;
}