-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (125 loc) · 2.16 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
body {
background-color: white;
min-width: 650px;
max-width: 800px;
margin-left: auto;
margin-right: auto;
padding: 0;
padding-bottom: 100px;
}
h1 {
font-family: "Open Sans";
font-style: bold;
color: black;
font-size: 22px;
text-align: center;
margin: 0px;
margin-top: 0px;
margin-bottom: 10px;
}
h2 {
font-family: "Open Sans";
font-style: bold;
color: #404040;
font-size: 16px;
text-align: left;
margin: 0px;
margin-top: 50px;
margin-bottom: 10px;
}
h3 {
font-family: "Open Sans";
font-style: bold;
color: #404040;
font-size: 15px;
text-align: left;
margin: 0px;
margin-top: 0px;
margin-bottom: 10px;
}
h4 {
font-family: "Open Sans";
font-style: bold;
color: #404040;
font-size: 14px;
text-align: left;
margin: 0px;
margin-top: 0px;
margin-bottom: 10px;
}
p {
font-family: "Open Sans";
text-align: left;
color: #404040;
font-size: 13px;
line-height: 16px;
margin: 10px;
margin-top: 10px;
margin-bottom: 4px;
}
li {
font-family: "Open Sans";
text-align: left;
color: #404040;
font-size: 13px;
line-height: 16px;
margin: 10px;
margin-top: 10px;
margin-bottom: 4px;
}
a {
font-size: 13px;
color: #404040;
}
a:hover {
background-color: silver;
border-color: silver;
box-shadow: 0px 1px 5px #898989;
}
::selection {
color: black;
background: rgba(210,210,210,0.8);
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
color: rgba(0,0,0,0.35);
opacity: 1; /* Firefox */
}
img {
display: block;
margin-left: auto;
margin-right: auto;
height: 265px;
}
hr {
margin-top: 53.5px;
margin-bottom: 44px;
width:97%;
}
.box {
margin-top: 22px;
}
.material-icons {
vertical-align: middle;
padding-bottom: 2.75px;
}
a.WForm {
text-decoration: none;
font-family: "Open Sans";
font-size:13px;
background-color: silver;
color: #404040;
border: 7px silver solid;
border-radius: 10px;
padding: 0px;
padding-left
box-shadow: 0px 0px 0px silver;
z-index: 10;
transition-duration: 0.12s;
}
a.WForm:hover {
color: white;
box-shadow: 0px 3px 10px black ;
background-color: black;
border: 7px black solid;
transform: translateY(-2px);
}