-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
39 lines (39 loc) · 715 Bytes
/
style.css
File metadata and controls
39 lines (39 loc) · 715 Bytes
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
*{
margin: 0;
padding: 0;
}
.button{
outline: 0;
width: 3.5rem;
height: 3.5rem;
margin: 5px;
font-size: 1.5rem;
cursor: pointer;
background-color: black;
color: blanchedalmond;
border: none;
transition: 0.3s;
}
.button:hover{
background-color:whitesmoke;
color:black;
box-shadow:2px 3px black;
transition: 0.3s;
}
.textview{
width: 15.7rem;
outline: 0;
margin: 5px;
font-size: 2rem;
padding: 5px;
}
.main{
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
}
.background{
background:linear-gradient(to right,rgb(132, 144, 255),rgba(255, 0, 170, 0.692));
height: 100vh;
}