-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
58 lines (52 loc) · 1.03 KB
/
style.css
File metadata and controls
58 lines (52 loc) · 1.03 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
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif
}
h1 {
text-align: center;
margin-bottom: 30px;
}
.container {
width: 800px;
margin: 0 auto;
margin-top: 70px;
margin-bottom: 100px;
}
#main, #linear_main {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
grid-gap: 20px;
}
.block {
border: 1px solid #b3b3b3;
/* box-shadow: 0 0 5px #b3b3b3; */
height: 100px;
transition: 1ms;
border-radius: 4px;
padding: 25px;
text-align: center;
box-sizing: border-box;
font-size: 30px;
}
form {
width: 300px;
height: 90px;
margin: 0 auto;
margin-top: 20px;
}
.number {
width: 100%;
height: 41px;
padding-left: 10px;
box-sizing: border-box;
}
input[type="submit"] {
background-color: purple;
border: 0;
width: 80px;
color: #fff;
height: 30px;
display: block;
margin-top: 10px;
border-radius: 5px;
float: right;
}