-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
50 lines (50 loc) · 980 Bytes
/
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
.box{
height: 630px;
width: 420px;
background: #364c59;
margin: 50px auto;
border-radius: 15px;
box-shadow: 0px 0px 20px 5px black;
}
p{
color: white;
text-align: center;
font-size: 40px;
font-weight: bold;
}
.screen{
height: 70px;
width: 360px;
background:#364c59;
margin:0px auto;
text-align: center;
font-size: 25px;
color: white;
line-height: 70px;
box-shadow: 0px 0px 5px 2px white;
}
.main{
height: 430px;
width: 360px;
margin: 25px auto;
}
.key{
height: 75px;
width: 75px;
background:rgba(0,0,0,0.3);
float: left;
margin-left: 12px ;
margin-top: 10px;
border-radius: 20px;
line-height: 75px;
text-align: center;
font-weight: 200;
color: white;
font-size: 20px;
}
body{
background:linear-gradient(120deg,black,grey,white,#364c59);
}
.key:hover{
box-shadow: 0px 0px 5px 2px white;
}