-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
54 lines (51 loc) · 1.1 KB
/
styles.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
51
52
53
54
*{
margin:0;
box-sizing: border-box;
padding: 0;
}
body{
background-color: black;
background-repeat: no-repeat;
background-size: cover;
font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.cont{
background-color: transparent;
color: white;
border: 2px solid white;
box-shadow: 0 0 2px white;
padding: 20px;
margin: auto;
margin-top: 50px;
width: 80%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
button,input{
font-size: 1rem;
font-weight: bolder;
text-transform: capitalize;
letter-spacing: 2px;
background-color: transparent;
width: 60%;
color: white;
margin: 10px;
margin-bottom: 40px;
padding: 10px;
border: 1px solid white;
}
button:active{
background-color:antiquewhite;
}
button:hover{
cursor: pointer;
transform: scale(1.1);
opacity: 0.9;
}
label{
text-transform: capitalize;
letter-spacing: 2px;
font-weight: bold;
}