-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub.css
More file actions
69 lines (67 loc) · 1.33 KB
/
Copy pathgithub.css
File metadata and controls
69 lines (67 loc) · 1.33 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
68
69
*{
margin: 0 ;
padding: 0;
box-sizing: border-box;
}
#video{
position: fixed;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}
.container{
background: transparent;
color: aliceblue;
width: 700px;
text-align: center;
border: none;
height: 30px;
width: 800px;
display: flex;
flex-direction: column;
margin: auto;
font-style: italic;
align-items: center;
justify-content: center;
min-height: 100vh;
}
.button{
margin:50px auto;
height: 50px;
width: 250px;
font-style: oblique;
border-radius: 30px;
border:none;
cursor: pointer;
background-color: rgb(140, 181, 140);
transition: 0.3s;
text-transform: uppercase;
color: black;
font-size: 20px;
}
.button:hover{
border: solid black;
background-color:rgb(96, 129, 96) ;
}
.display{
margin: 30px auto;
font-size: 26px;
text-transform: uppercase;
}
#muteBtn{
width: 100px;
background-color: rgb(140, 181, 140);
text-transform: uppercase;
cursor: pointer;
border-radius: 30px;
border: none;
padding-top: 5px;
padding-bottom: 5px;
color: black;
font-style: oblique;
}
#muteBtn:hover{
border: solid black;
background-color:rgb(96, 129, 96) ;
}