-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·77 lines (77 loc) · 1.2 KB
/
Copy pathstyle.css
File metadata and controls
executable file
·77 lines (77 loc) · 1.2 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
71
72
73
74
75
76
77
* {
box-sizing: border-box;
}
body{
font-family:"Courier New", Courier, monospace;
margin: 0;
height: 100%;
background-color: #898099;
position: relative;
}
h1{
margin:0 ;
}
p{
white-space: pre;
line-height: 0.7;
}
a:link, a:visited, a:hover, a:active{
color: white;
text-decoration: none;
}
textarea{
font-family:"Courier New", Courier, monospace;
width: 100%;
height: 320px;
font-size: 14px;
}
input[type=submit] {
float: left;
border-radius: 5px;
font-family:"Courier New", Courier, monospace;
font-size: 14px;
font-weight: bold;
border: 0;
width: 90px;
height:25px;
background: #4ABDAC;
color: black;
margin-right:5px;
cursor: pointer;
}
input[type=submit]:hover{
color: white;
}
.top{
padding: 20px;
padding-top: 5px;
padding-bottom: 5px;
color: black;
width: 100%;
background-color: #4ABDAC;
}
.middle{
padding: 20px;
padding-right: 40px;
color: black;
width: 100%;
background-color: #DFDCE3;
padding-top: 10px;
padding-bottom: 10px;
}
.bottom{
padding: 20px;
color: black;
width: 100%;
background-color: white;
}
.foot{
padding: 20px;
color: white;
width: 100%;
background-color: #898099;
height: 100%;
}
.center{
width: 600px;
}