-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (36 loc) · 734 Bytes
/
Copy pathstyle.css
File metadata and controls
41 lines (36 loc) · 734 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
*{
margin:0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: 'Courier New', Courier, monospace;
}
.input{
text-align: center;
margin: 100px 0;
}
input[type="text"]{
height: 50px;
width: 600px;
background: #e7e7e7;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: bold;
font-size: 20px;
border: none;
border-radius: 2px;
padding: 10px 10px;
}
input[type="submit"]{
height: 50px;
width: 100px;
background: #e7e7e7;
font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
font-weight: bold;
font-size: 20px;
border: none;
border-radius: 2px;
}
.display{
text-align: center;
}