-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (43 loc) · 822 Bytes
/
style.css
File metadata and controls
43 lines (43 loc) · 822 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
40
41
42
43
#container{
background-color: white;
padding: 10px;
border-radius: 5px;
box-shadow: 0px 0px 20px -10px ;
}
#container div{
text-align: right;
}
body{
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background-color: rgb(221, 221, 221);
}
button{
border: 1px solid white;
margin: 10px;
padding: 5px 10px 3px 10px;
background-color: rgb(78, 182, 252);
color: white;
border-radius: 25px;
transition: background-color .2s;
}
button:hover{
border: 1px solid rgb(78, 182, 252);
color: rgb(78, 182, 252);
background-color: white;
}
h1{
font-weight: normal;
text-align: center;
}
td{
text-align: right;
padding: 5px;
}
input{
padding: 10px;
border: 1.5px solid lightgray;
border-radius: 3px;
}