-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
115 lines (98 loc) · 1.74 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
*{
margin: 0;
padding: 0;
outline: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: #00000000;
}
html, body{
height: 100%;
}
body{
font-family: Arial, Helvetica, sans-serif;
background-color: #ff6347;
}
#root{
min-height: 100%;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
nav{
background-color: #cecece;
padding: 5px;
max-width: 500px;
width: 90%;
margin-top: 10px;
margin-bottom: 10px;
border-width: 5px;
border-style: solid;
border-bottom-color: #808080;
border-right-color: #808080;
border-top-color: #FFF;
border-left-color: #FFF;
}
nav h1{
text-align: center;
margin-bottom: 0.5em;
}
.row{
display: flex;
justify-content: center;
flex-wrap: wrap;
}
.input-block{
margin-right: 10px;
margin-bottom: 10px;
}
nav .input-block label{
display: block;
text-transform: capitalize;
text-align: center;
}
nav .input-block input{
padding: 5px;
width: 70px;
text-align: center;
font-size: 15px;
}
.button-container{
display: flex;
flex-direction: column;
justify-content: flex-end;
margin-bottom: 10px;
}
nav button{
margin-top: 1;
padding: 8px;
border: 0;
background-color: #ff6347;
color: #FFF;
font-weight: bold;
cursor: pointer;
transition: background-color 0.5s;
}
nav button:hover{
background-color: #d34931;
}
canvas{
cursor: pointer;
width: 90%;
max-width: 500px;
}
footer{
display: flex;
justify-content: center;
}
footer a{
display: flex;
justify-content: center;
align-items: center;
color: #000;
text-decoration: none;
}
footer img{
height: 2em;
margin-right: 10px;
}