-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
95 lines (83 loc) · 1.43 KB
/
style.css
File metadata and controls
95 lines (83 loc) · 1.43 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
* {
margin: 0;
padding: 0;
}
header {
background-color: white;
width: 100%;
height: 80px;
display: inline-block;
position: fixed;
}
header img {
float: left;
padding-top: 15px;
padding-left: 20px;
padding-right: 10px
}
header h1{
padding-top:20px;
font-family: "Slabo 35px";
}
#content {
padding-top: 120px;
padding-bottom:50px;
text-align: center;
}
#content h2 {
color: ;
font-family: "Slabo 40px";
}
body {
background-image: url("marble3.jpg");
background-repeat: no-repeat;
background-size: cover;
font-size: 20px;
}
.textBox {
height: 100px;
width: 200px;
font-size: 12pt;
}
.textBox:focus {
background-color: beige;
}
.inputList {
background-color: #eaeaea;
width: 60%;
margin: 30px auto;
padding: 30px 20px;
display: block;
}
.btn {
background-color: #000000;
color: #FFFFFF;
padding: 10px;
border-radius: 10px;
margin:10px;
width: 150px;
height: 60px;
display: inline-block;
font-size: 15px;
}
#results{
background-color: #e2e1df;
width: 50%;
margin: 30px auto;
padding: 30px 20px;
display: block;
text-align: center;
font-family: "Slabo 12px"
}
footer {
bottom: 0;
width: 100%;
padding: 25px 0;
text-align: center;
font-family: 'Slabo 27px';
background-color: #252525;
color: #ffffff;
}
ul {
list-style-type:none
}