-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstyles.css
129 lines (95 loc) · 1.93 KB
/
styles.css
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
body{
margin: 0px;
padding: 0px;
color: white;
background-color: rgb(25, 49, 41);
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
box-sizing: border-box;
}
/* TITLE */
#title{
display: flex;
justify-content: center;
align-items: center;
box-shadow:0px 0px 10px rgb(150, 179, 169);
background-color: rgb(25, 49, 41);
color: white;
height: 60px;
margin-top: 0px;
}
.milkProduce{
width: 90%;
margin: 0px auto;
display: flex;
justify-content: center;
}
/* FORM */
/* Input and Label */
.formData {
display: flex;
justify-content: center;
align-items: center;
width: 50%;
margin-right: 20px;
box-shadow: 0px 0px 10px rgb(150, 179, 169);
border-radius: 4px;
font-size: 16px;
}
.formData #sheds{
display: flex;
justify-content: center;
flex-direction: column;
width: 100%;
margin-top: 20px;
}
.formData > form{
width: 100%;
padding: 20px;
}
form > div > input[type="number"]{
height: 30px;
}
/* Button */
form > button {
margin-bottom: 20px;
padding: 10px 20px;
width: 100%;
}
form > button[type = "submit"]{
margin-top: 20px;
}
form > button[type = "submit"], form > button[type = "reset"]{
background: none;
color: white;
border: 1px solid white;
}
/* OUTPUT DISPLAY */
.outputDisplay{
overflow: auto;
width: 50%;
box-shadow:0px 0px 10px rgb(150, 179, 169);
background-color: rgb(25, 49, 41);
border-radius: 4px;
font-size: 16px;
height: 550px;
}
#displayTitle{
text-align: center;
}
#outputData{
padding: 0px 20px;
}
@media screen and (max-width: 760px) {
.milkProduce{
display: flex;
flex-direction: column;
}
.formData {
width: 100%;
margin-bottom: 20px;
}
.outputDisplay{
width: 100%;
}
}