-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
189 lines (189 loc) · 3.31 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
body, html {
margin:0;
padding:0;
font-family: 'Quattrocento Sans', 'Calibri', sans-serif;
color: #262626;
}
h1 {
font-size: 75pt;
line-height: 85pt;
font-variant: small-caps;
font-style: italic;
position:relative;
/*color: #CDCDCD;
text-shadow: #6738FF 4pt 0 2px;*/
color: #afafaf;
text-shadow: rgba(103, 56, 255, 0.7) 2pt 0px 2px;
margin-top: 0;
margin-bottom: 20px;
}
h3 {
font-size: 23pt;
margin: 15px 0;
}
#main {
position:relative;
width:880px;
padding:0 25px;
margin:auto;
}
#header {
position: relative;
}
#header h2 {
position: absolute;
top: 70px;
left: 195px;
color: #7A91A1;
font-size: 20pt;
font-style: italic;
}
#headpic {
text-align: center;
}
#headpic div.pic {
width: 790px;
height: 170px;
background-image: url("img/headpic.png");
background-repeat: no-repeat;
opacity: 0.85;
margin-left: auto;
margin-right: auto;
}
#navigation a div {
padding: 5px 15px;
border-radius: 0 0 15px 15px;
border: 3px solid #7E5781;
border-top: none;
color: #7E5781;
font-weight: 700;
font-size: 12pt;
display: inline-block;
cursor: pointer;
vertical-align: top;
}
#navigation a div.selected, #navigation a div:hover, #navigation a div:focus {
padding-top: 15px;
color: #FFFFFF;
background-color: #7E5781;
}
#navigation a:not(:first-child) {
margin-left: -2px;
}
#navigation a.download div {
color:#6738FF;
border:3px solid #6738FF;
border-top: none;
}
#navigation a.download div:hover, #navigation a.download div:focus {
color:white;
background-color:#6738FF;
}
#footer {
margin-top:25px;
width:100%;
text-align:right;
line-height:25px;
}
#content {
text-align: center;
}
.note {
font-size: 10pt;
color: #717171;
width: 790px;
padding: 2px 5px;
margin-left: auto;
margin-right: auto;
}
.info {
font-size: 13pt;
border-radius: 5px;
margin: 15px;
}
.box {
width: 45%;
display: inline-block;
vertical-align: top;
text-align: justify;
margin-right: 15px;
font-size: 14pt;
line-height: 19pt;
}
.pull-right {
float: right;
}
.pull-left {
float: left;
}
#contact-form {
width: 460px;
margin:auto;
background-color: #CDCDCD;
padding: 5px;
border-radius: 5px;
}
#contact-form legend {
font-size: 16pt;
line-height: 20pt;
border-bottom: 3px solid #7A91A1;
padding: 5px;
padding-bottom: 15px;
}
#contact-form fieldset {
border: none;
padding: 5px;
padding-top: 15px;
}
fieldset .field {
margin: 10px 0;
size: 9px;
}
fieldset .field label {
text-align: left;
display: inline-block;
width: 45%;
padding: 3px;
vertical-align: top;
}
fieldset .field input, fieldset .field textarea {
width: 50%;
border-radius: 3px;
border: 1px solid #B59EFF;
padding: 5px;
font-family: 'Quattrocento Sans', sans-serif;
font-size: 15px;
}
fieldset .field input:focus, fieldset .field input:hover, fieldset .field textarea:focus, fieldset .field textarea:hover {
border-color: #6738FF;
box-shadow: 1px 1px 3px #B59EFF, -1px -1px 3px #B59EFF;
}
.btns {
margin-top:15px;
margin-bottom:10px;
}
.btn {
padding:10px 20px 10px 20px;
-moz-border-radius:15px;
-o-border-radius:15px;
-webkit-border-radius:15px;
border-radius:15px;
border:2px solid #6738FF;
cursor:pointer;
color:#6738FF;
background-color:white;
width:120px;
text-align:center;
margin-left: auto;
margin-right: auto;
}
.btn:hover, .btn:focus {
color:white;
background-color:#6738FF;
}
.clear {
clear: both;
}
.hidden {
display: none;
}