-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
69 lines (58 loc) · 1.1 KB
/
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
59
60
61
62
63
64
65
66
67
68
69
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
body {
background-color: #001848;
}
.container {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
align-items:center;
justify-content:center;
height: 90vh;
width: 100%;
}
.content {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
padding:24px;
align-items:center;
}
.text-input {
font-size: 32px;
border: none;
border-bottom: 3px solid #604878;
background: #001848;
color: #fff;
margin: 5px;
transition: 0.3s;
}
.text-input:focus {
outline: none;
border-bottom: 3px solid #906090;
}
.falar-btn {
color: aliceblue;
background: #604878;
border: none;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
cursor: pointer;
transition: 0.3s;
}
.falar-btn:hover {
background: #906090;
}
.footer a {
font-family: 'Roboto', sans-serif;
text-align: center;
color: #906090;
text-decoration: none;
}