Diff of /css/style.css [000000] .. [b8dc97]

Switch to unified view

a b/css/style.css
1
2
html,body {
3
    background-image: url('background-image.jpg');
4
    background-attachment: fixed;
5
    background-size: cover;
6
    margin:0px;
7
    height:100vh;
8
9
}
10
11
.center {
12
  height:100%;
13
  display:flex;
14
  align-items:center;
15
  justify-content:center;
16
17
}
18
19
.form-input {
20
  width:350px;
21
  padding:20px;
22
  background: rgba(0,0,0,0.2);
23
  border-radius: 20px;
24
  
25
}
26
27
.form-input input {
28
  display:none;
29
30
}
31
32
.form-input label {
33
  display:block;
34
  width:100%;
35
  height:50px;
36
  line-height:50px;
37
  text-align:center;
38
  background:#333;
39
  color:#fff;
40
  font-size:15px;
41
  font-family:"Open Sans",sans-serif;
42
  text-transform: uppercase;
43
  font-weight:600;
44
  border-radius:10px;
45
  cursor:pointer;
46
  margin-bottom: 10px;
47
48
}
49
50
.form-input img {
51
  width:100%;
52
  height:300px;
53
  display:none;
54
  margin-bottom: 20px;
55
56
}
57
58
#thebutton{
59
  display:none;
60
  width:65%;
61
  height:50px;
62
  text-align:center;
63
  background:#5267a6;
64
  color:#fff;
65
  font-size:15px;
66
  font-family:"Open Sans",sans-serif;
67
  text-transform: uppercase;
68
  font-weight:600;
69
  border-radius:10px;
70
  cursor:pointer;
71
  margin: 0 auto;
72
73
}
74
75
#prediction{
76
  display:none;
77
  width:65%;
78
  height:50px;
79
  text-align:center;
80
  background:#5267a6;
81
  color:#fff;
82
  font-size:15px;
83
  font-family:"Open Sans",sans-serif;
84
  text-transform: uppercase;
85
  font-weight:600;
86
  border-radius:10px;
87
  cursor:pointer;
88
  margin: 0 auto;
89
90
}