forked from dienesh12/Erratum-400
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
45 lines (43 loc) · 800 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
body{
margin: 0;
padding: 0;
font-family: 'PT Sans', sans-serif;
background-color: black;
}
.info{
position: absolute;
top: 50%;
left: 50%;
background-color: gray;
border-color: blanchedalmond;
width: 225px;
height: 225px;
transform: translate(-50%,-50%);
padding: 20px;
border-radius: 8px;
}
h1 {
text-align: center;
color: wheat;
}
label {
color: wheat;
}
input {
border: none;
outline: none;
border-bottom: 1px solid wheat;
background: transparent;
cursor: pointer;
}
.button{
width: 70px;
height: 25px;
border-radius: 10px;
margin-left: 30%;
border: none;
outline: none;
background-color: wheat;
cursor: pointer;
font: bold;
}