-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
54 lines (48 loc) · 846 Bytes
/
styles.css
File metadata and controls
54 lines (48 loc) · 846 Bytes
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
* {
margin: 0;
padding: 0;
overflow: hiden;
font-family: 'Roboto', sans-serif;
}
body {
background-color: #b7dceb;
}
.container {
background-color: #ebebeb;
width: 600px;
height: 400px;
margin: auto;
margin-top: 100px;
padding: 30px;
text-align: center;
justify-content: center;
border-radius: 20px;
border: solid 2px;
border-color: #42b5e2;
}
img {
width: 180px;
height: 180px;
padding-top: 30px;
}
input {
width: 240px;
height: 30px;
font-size: 18px;
border-radius: 6px;
border: solid 2px;
border-color: #aaaaaa;
padding: 5px;
}
button {
width: 150px;
height: 35px;
border: none;
border-radius: 5px;
background-color: #375ec7;
color: #fff;
cursor: pointer;
}
button:hover {
background-color: #4e6ec7;
}