-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (43 loc) · 796 Bytes
/
Copy pathstyle.css
File metadata and controls
49 lines (43 loc) · 796 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
46
47
48
49
body {
background-color: aliceblue;
text-align: center;
}
h1 {
font-family: arial;
color: rgb(38, 124, 252);
font-size: 41px;
}
p {
font-family: arial;
color: rgb(75, 144, 249);
}
#input {
width: 900px;
height: 700px;
resize: none;
margin: 0 auto;
background-color: rgb(64, 63, 63);
color: white;
font-size: 17px;
padding: 10px;
border-width: 3px;
border-color: rgb(198, 202, 205);
border-radius: 6px;
}
#input:focus {
outline: none;
}
.btnContainer {
width: 921px;
margin: 0 auto;
text-align: right;
}
#compress {
width: 100px;
height: 30px;
font-size: 18px;
border-radius: 30px;
border-style: solid;
border-color: rgb(63, 139, 254);
background-color: rgb(240, 236, 236);
}