-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
53 lines (46 loc) · 842 Bytes
/
main.css
File metadata and controls
53 lines (46 loc) · 842 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
/*Martin Batista - Python Developer */
/*.container class...<div class="container"> */
html, body {
height: 100%;
margin: 0;
}
.container {
margin: 0 auto;
width: 100%;
height: 100%;
background-color: #006666;
color: #e6ffff;
overflow: hidden;
text-align: center;
}
.container h1 {
font-family: Arial, sans-serif;
font-size: 30px;
color: #DDCCEE;
margin-top: 80px;
}
.container form {
margin: 20px;
}
.container input {
width: 350px;
height: 15px;
font-size: 15px;
margin: 2px;
padding: 20px;
transition: all 0.5s ease-out;
}
.container button {
width: 70px;
height: 30px;
background-color: steelblue;
margin: 4px;
}
.container p {
margin: 50px;
}
.message {
font-family: Arial, sans-serif;
font-size: 15px;
color: #FF9977;
}