-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
112 lines (96 loc) · 1.75 KB
/
main.css
File metadata and controls
112 lines (96 loc) · 1.75 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body{
font-family: Libre Franklin;
font-size: 20px;
padding: 0;
box-sizing: border-box;
font-weight:300;
color:hsl(209, 33%, 12%);
}
.logo {
padding:10px;
margin: 0 auto;
margin-top:40px;
}
.container {
width:50%;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 auto;
text-align: center;
}
.container img{
width:100%;
padding-top:40px;
padding-bottom:40px;
}
b{
font-weight: 600;
color:hsl(209, 33%, 12%);
}
h1{
font-weight: 300;
color:hsl(0, 0%, 59%);
line-height: 1em;
margin-bottom: 15px;
margin-top:0;
}
.uinput {
width:100%;
margin-top:25px;
padding:0px;
}
.uinput input {
border-radius:50px;
width:50%;
padding:15px;
padding-right:0px;
border:1px solid hsl(0, 0%, 85%);
font-family:Libre Franklin;
font-size:12px;
}
.uinput input::placeholder {
color: hsl(0, 0%, 85%);
}
.uinput input:focus {
outline: none;
}
.uinput button{
width:25%;
padding:15px;
border-radius:50px;
background-color: hsl(223, 87%, 63%);
color:#fff;
font-weight: 700;
border:none;
box-shadow:1px 5px 5px hsl(223, 100%, 88%);
transition: 0.2s;
}
.uinput button:hover{
background-color: hsl(223, 100%, 88%);
color:#fff;
cursor: pointer;
transition: 0.2s;
}
@media only screen and (max-width: 600px) {
.uinput{
width:100%;
display:flex;
flex-direction: column;
justify-content: center;
}
.uinput input {
width:90%;
margin-bottom:10px;
}
.uinput button{
width:95%;
text-align: center;
}
.container {
width:90%;
}
h1{
font-size:1.5em;
}
}