-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
51 lines (51 loc) · 1.09 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
.container {
display:flex;
height:100vh;
justify-content: center;
align-items: center;
background-color:white;
}
.first-box {
width:900px;
height:600px;
background-color:rgb(134, 230, 230);
border-radius:10px;
border-width: 5px;
border-style:solid;
border-color:blueviolet;
}
.second-box {
width: 600px;
height: 400px;
background-color: purple;
color: white;
border-radius: 5px;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#heading {
text-align: center;
font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.text {
background-color: purple;
color: white;
border: none;
outline: none;
padding-right: 20px;
padding-left: 120px;
padding-top: 30px;
resize: none;
width: 350px;
height:200px;
}
.chars {
padding-left: 120px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.word {
padding-left: 200px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}