-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (56 loc) · 1.17 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
* {
margin :0;
padding: 0;
}
body{
margin:0;
padding:0;
background: url(bg.jpeg);
background-size: cover;
}
.container{
color:rgba(78, 71, 71, 0.719);
// border: whitesmoke solid 2px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
position: absolute;
margin: 20% 50%;
// background-color: lawngreen;
transform: translate(-50%,-50%);
width:450px;
height: 310px;
font-family:monospace, sans-serif;
}
.output {
width:400px;
height:100px;
//border: 2px solid rgb(52, 65, 62);
margin:10px;
padding: 5px;
font-family:monospace, sans-serif;
}
#input-text {
width: 400px;
height:100px;
padding: 10px;
margin-top: 20px;
border:none;
//background-color:rgba(78, 71, 71, 0.719);
color:black;
font-family:monospace, sans-serif;
}
.primary-btn{
margin-top:30px;
font-size: 18px;
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
color::rgba(78, 71, 71, 0.719);
border-style: none;
font-family:monospace, sans-serif;
cursor: pointer;
background:none;
}