-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (59 loc) · 1.14 KB
/
style.css
File metadata and controls
65 lines (59 loc) · 1.14 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
outline: none;
}
body {
background-color: #000000;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
min-height: 100vh;
}
.img-logo {
height: 200px;
width: 300px;
margin: 70px auto;
}
h2 {
font-style: normal;
font-weight: 400;
color: #FFFFFF;
font-size: 20px;
line-height: 38px;
text-align: center;
margin-top: 5px;
margin-bottom: 15px;
}
input {
background: rgba(255, 255, 255, 0.25);
border: 1px solid rgba(255, 255, 255, 0.20);
border-radius: 14px;
height: 35px;
width: 200px;
padding-left: 20px;
font-weight: 500;
font-size: 24px;
line-height: 47px;
color: #FFFFFF;
opacity: 0.7;
}
.input-max {
margin-left: 20px;
}
button {
background: #AEC346;
box-shadow: 0px 18px 40px 0px rgba(174, 195, 70, 0.35);
border-radius: 10px;
width: 150px;
height: 40px;
color: #FFFFFF;
font-weight: 700;
font-size: 18px;
margin-top: 15px;
border: none;
cursor: pointer;
}