-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
58 lines (51 loc) · 926 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
51
52
53
54
55
56
57
58
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url("https://i.pinimg.com/564x/9e/d6/db/9ed6db8532d7e79abed2d80b393e14f4.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: top;
}
input {
background-color: white;
width: 300px;
height: 40px;
border: none;
border-radius: 100px;
padding-left: 10px;
}
button {
background-color: transparent;
color: white;
background-color: rgb(232, 91, 39);
width: 90px;
height: 40px;
border-radius: 300px;
border: none;
font-size: 15px;
}
.main {
display: flex;
justify-content: center;
margin-top: 100px;
}
h1{
color: white;
font-family: sans-serif;
text-align: center;
margin-top: 25px;
font-size: 50px;
}
table{
margin: auto;
font-size: 30px;
color: white;
font-family: sans-serif;
letter-spacing: 3px;
background-color: black;
opacity: 0.7;
text-align: center;
}