forked from IBMHACK/IBMHACK.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
88 lines (80 loc) · 1.29 KB
/
stylesheet.css
File metadata and controls
88 lines (80 loc) · 1.29 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
body {
background-image:url(background.jpg);
background-size: cover;
background-repeat: no-repeat;
}
p {
color: white;
}
h1 {
font-family: 'Gill Sans';
float: top;
margin-top: 10%;
color: white;
font-size: 60px;
text-align: center;
}
h2 {
font-family: 'Arial';
margin-top:100px;
margin-left: 15%;
color: white;
}
h3 {
color: white;
}
#content {
font-family: 'Arial';
color: white;
margin-left: 15%;
}
/*
#ingredients {
display: inline-block;
color: white;
}
*/
#inText {
display: block;
margin: 0px auto;
font-size: 40px;
height: 80px;
width: 70%;
padding: 5px 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
#addButton {
display: block;
margin: 10px 0px 0px 0px;
float: left;
text-align: center;
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
font-size: 16px;
}
#clearButton {
display: block;
margin: 10px 5px 0px 15%;
float: left;
text-align: center;
background-color: #4CAF50; /* Green */
border: none;
color: white;
padding: 15px 32px;
font-size: 16px;
}
#Submit {
display: block;
margin: 10px 15% 0px 0px;
float: right;
text-align: center;
background-color: #cc0000;
border: none;
color: white;
padding: 15px 70px;
font-size: 16px;
}