This repository was archived by the owner on Apr 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (93 loc) · 1.56 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
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
/* Style for my The Complete Web Developer course */
body {
font-family: "Tahoma", sens-serif;
font-size: 16px;
line-height: 1.2;
padding: 20px 20%;
background-color: #E4F1FE;
height: 100%;
}
header {
text-align: center;
}
nav {
text-align: center;
padding-top: 40px;
}
nav li {
display: inline-block;
list-style: none;
}
nav a {
text-decoration: none;
padding: 16px 40px;
color: #013243;
}
nav a:hover {
border-radius: 4px;
padding: 16px 40px;
background-color: #013243;
color: #ffffff;
}
#register {
border-radius: 4px;
padding: 16px 40px;
border: 3px solid #013243;
color: #013243;
}
#register:hover {
color: #ffffff;
}
section {
padding-top: 40px;
}
form {
width: 420px;
}
input[type=text], input[type=password],input[type=email], input[type=date] {
padding:5px;
margin: 5px;
border:2px solid #ccc;
-webkit-border-radius: 5px;
border-radius: 5px;
width: 100%;
}
input[type=text]:focus {
border-color:#333;
}
input[type=submit], input[type=reset], input[type=button] {
border-radius: 4px;
padding: 16px 40px;
border: 3px solid #013243;
color: #013243;
font-size: 16px;
margin-right: 40px;
}
.buttons {
text-align: center;
padding-top: 20px;
}
blockquote {
font-style: italic;
font-size: 18px;
border-left: 4px solid #cccccc;
padding-left: 20px;
font-family: "Georgia", serif;
width: 60%;
}
img {
float: left;
padding-right: 20px;
}
.moto {
text-align: center;
padding-top: 20px;
font-size: 26px;
}
footer {
font-size: 10px;
vertical-align: bottom;
height:30px;
text-align:right;
padding: 40px 0;
}