-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjavascript2.css
More file actions
67 lines (65 loc) · 1.15 KB
/
Copy pathjavascript2.css
File metadata and controls
67 lines (65 loc) · 1.15 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
65
66
67
#main
{
margin-top:0px;
margin-bottom: 0px;
padding:0px;
border-top:20px solid black;
border-bottom:20px solid black;
display: flex;
flex-direction: column;
justify-content: center;
height: 90vh;
width:100vw;
}
#outer
{
align-self: center;
height:200px;
width:200px;
display:flex;
background-color: blue;
border-radius: 50%;
justify-content: center;
}
#inner
{
height:100px;
width:100px;
background-color: white;
align-self: center;
}
#bdiv
{
align-self: center;
display:flex;
flex-direction: column;
justify-content: center;
margin-top: 50px;
}
#btn1
{
height:50px;
width:200px;
display:block;
align-self: center;
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#btn2
{
height:50px;
width:200px;
display:block;
align-self: center;
margin-top: 50px;
font-size: 20px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#btn1:hover{
box-shadow: darkgray;
box-shadow: 5px 5px 5px grey;
}
#btn2:hover{
box-shadow: darkgray;
box-shadow: 5px 5px 5px grey;
}