-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.09 KB
/
style.css
File metadata and controls
64 lines (56 loc) · 1.09 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
59
60
61
62
63
64
*{
box-sizing: border-box;
text-align: center;font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.main{
display: flex;
justify-content: center;
align-items: center;
height: 300px;
}
body{
margin-top: 5%;
color: rgb(34, 34, 34);
background-color: rgb(210, 161, 255);
}
canvas{
border: 10px solid #09000c;
padding: 0;
width: 200px;
display: block;
margin: auto;
width: auto;
height: auto;
overflow-y: visible;
overflow-x: scroll;
background-color: #e3a7ff;
}
input,button{
appearance: none;
margin: 5px;
padding-left: 15px;
outline: 0;
border: 1px solid white;
background-color: rgba(255, 255, 255, 0.192);
width: 250px;
height: 40px;
transition: 450ms;
font-weight: 600;
color: rgb(82, 0, 99);
font-size: 16px;
}
button{
cursor: pointer;
background-color: rgb(255, 255, 255);
text-transform: uppercase;
}
input:hover{
background-color: rgba(255, 255, 255, 0.363);
}
input:focus{
background-color: white;
scale: 1.1;
}
button:hover{
scale: 1.1;
}