-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
91 lines (77 loc) · 1.46 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Inconsolata');
* {
box-sizing: border-box;
}
form {
position: relative;
z-index: 1;
background-color: #f2f2f2;
width: 30%;
margin: 100px auto 100px;
padding: 45px;
border-radius: 12px;
text-align: center;
}
input,label {
outline: 0;
width: 100%;
border: 0;
margin: 15px;
padding: 15px;
box-sizing: border-box;
font-size: 2em;
}
input[type="number"]::placeholder {
/* Firefox, Chrome, Opera */
text-align: center;
}
input[type="number"]:-ms-input-placeholder {
/* Internet Explorer 10-11 */
text-align: center;
}
body {
font-family: 'Inconsolata', monospace;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.page-heading{ display: none; }
.button {
background-color: white;
color: black;
border: 2px solid #cecece;
border-radius: 12px;
outline: 0;
width: 100%;
padding: 1em 2em;
white-space: normal;
font-size: 1.3em;
-webkit-transition: all 0.3 ease;
transition: all 0.3 ease;
cursor: pointer;
font-family: 'Inconsolata', monospace;
}
.button:hover,.form button:active,.form button:focus {
background: #cecece;
}
.column {
float: left;
width: 33%;
}
.column img {
max-height: 80%;
max-width: 80%;
}
.column h1 {
text-align: center
}
.row:after {
content: "";
display: table;
clear: both;
}
.row{
margin: auto;
text-align: center;
width: 80%;
padding: 2em;
}