-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
65 lines (57 loc) · 1.2 KB
/
app.css
File metadata and controls
65 lines (57 loc) · 1.2 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
body {
text-align: center;
text-shadow: 0 .05rem .1rem rgba(0,0,0,.5);
font-family: 'Roboto', sans-serif;
color: rgb(243, 235, 239);
height: 100%;
background-image: url('Maidan_Sunset.jpg');
background-size: cover;
font-weight: 100;
}
.flex-container {
display: flex;
justify-content: center;
flex-direction: column;
height: 100%;
}
h1{
margin: 0;
font-size: 100px;
line-height: 100px;
font-weight: 50;
}
p {
margin: 0;
font-size: 20px;
}
.form {
line-height: 1.5;
border: none;
border-bottom: 3px solid #ebebeb;
margin-top: 50px;
width: 350px;
font-size: 1.5em;
color: white;
padding: 5px 10px;
background: transparent;
}
button {
line-height: 1.5;
border: none;
border:3px solid white;
font-size: 1.5em;
color: rgb(66,69,86);
padding: 5px 30px;
background: rgba(255,255,255,1.0);
border-radius: 5px;
opacity: 0.8;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
color: rgba(255,255,255,0.8);
}
input[type=text]:focus {
outline: none;
}
button:hover{
opacity: 1;
}