-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathstyle.css
More file actions
50 lines (43 loc) · 736 Bytes
/
style.css
File metadata and controls
50 lines (43 loc) · 736 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
body {
font-size: 25px;
line-height: 1.5;
font-family: "Oswald", "Helvetica Neue";
color: #2884C3;
background-color: #e9e9e9;
}
h1,
h2 {
text-align: center;
color: #2884C3;
}
h1 {
font-size: 72px;
}
hr {
border: 0;
height: 1px;
background: #333;
background-image: linear-gradient(to right, #ccc, #333, #ccc);
}
form {
margin: 30px;
}
input {
margin: 5px;
height: 30px;
font-size: 20px;
}
.blue-button {
border-radius: 28px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
background: #3498db;
padding: 10px 20px 10px 20px;
text-decoration: none;
margin: 20px;
height: 50px;
}
.blue-button:hover {
background: #3cb0fd;
}