-
Notifications
You must be signed in to change notification settings - Fork 17
/
style.css
87 lines (75 loc) · 1.64 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
body {
background-color: #EEE;
}
header {
display: flex;
justify-content: center;
}
button {
background: none;
color: inherit;
border: none;
padding: 0;
font: inherit;
cursor: pointer;
outline: inherit;
}
button {
margin-top: 10px;
margin-right: 10px;
padding: 15px 40px;
font-size: 14px;
line-height: 1em;
text-shadow: 0 1px rgba(0, 0, 0, 0.4);
color: white;
display: inline-block;
vertical-align: middle;
text-align: center;
cursor: pointer;
font-weight: bold;
transition: background 0.1s ease-in-out;
-webkit-transition: background 0.1s ease-in-out;
-moz-transition: background 0.1s ease-in-out;
-ms-transition: background 0.1s ease-in-out;
-o-transition: background 0.1s ease-in-out;
text-shadow: 0 1px rgba(0, 0, 0, 0.3);
color: #fff;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
font-family: 'Helvetica Neue', Helvetica, sans-serif;
background-color: #f06060;
box-shadow: 0px 3px 0px 0px #cd1313;
text-decoration: none;
}
button:hover {
background-color: #ed4444;
}
button:active {
box-shadow: 0px 1px 0px 0px #cd1313;
}
#About {
background-color: #608ef0;
box-shadow: 0px 3px 0px 0px #1364cd;
}
#About:hover {
background-color: #449bed;
}
#About:active {
box-shadow: 0px 1px 0px 0px #1364cd;
}
#Contact {
background-color: #78f060;
box-shadow: 0px 3px 0px 0px #13cd1c;
}
#Contact:hover {
background-color: #60ed44;
}
#Contact:active {
box-shadow: 0px 1px 0px 0px #13cd23;
}
#content {
max-width: 80%;
text-align: center;
margin: 40px auto;
}