-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·166 lines (148 loc) · 2.45 KB
/
style.css
File metadata and controls
executable file
·166 lines (148 loc) · 2.45 KB
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
/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');
/*General Stuff*/
body {
background-color: white;
font-family: "Open Sans", sans-serif;
padding: auto;
padding-top: 10px;
font-size: 18px;
margin: 0;
background-color: #012759
}
h1 {
color: #141478;
background-color: #F3E19A;
border: 1px solid #012759;
font-family: "Open Sans", serif;
font-size: 32px;
-webkit-text-stroke: 0.5px black;
}
p {
color: black;
}
img {
display: block;
margin: auto;
max-width: 100%;
}
/* Set generic properties to tight wrapping */
* {
padding: 1px;
margin: 0;
}
/* Wrap Definition */
#wrap {
align-self: center;
margin: auto;
width: 85%;
max-width: 1000px;
padding: 5px 15px;
background-color: #fff;
}
#content {
text-align: left;
padding: 10px;
font-size: 14px;
}
#content h2 {
padding: 0px 5px;
font-size: 18px;
color: #012759;
background-color: #f8f8f8;
/*border: 1px solid #012759;*/
-webkit-text-stroke: 0.5px #F3E19A;
}
/* Header Definition */
#header {
height: auto;
width: auto;
background-color: black;
background: url(img/backnd.png);
}
#header h1 {
padding: 5px;
font-size: 24px;
color: #FFF; }
#header h1 a{
color: inherit;
font-style: inherit;
text-decoration: inherit;
}
#header h2 {
padding: 0px 5px;
font-size: 18px;
color: #F3E19A;
}
#header h3 {
padding: 0px 5px;
font-size: 10px;
color: #F3E19A;
}
#header h3 a{
color: inherit;
font-style: inherit;
text-decoration: inherit;
}
/* menu definition */
#menu {
text-align: center;
margin-top: auto;
font-size: 18px;
border: 1px solid #F3E19;
}
#menu a {
color : #3B85CA;
text-decoration : none;
padding: 10px;
}
#menu a:hover {
color : #000;
}
#menu img {
max-width: 80%;
width: 300px;
height: auto;
vertical-align: middle;
padding: inherit;
}
/* Grid */
.wrapper {
display: grid;
grid-gap: 10px;
grid-template-columns: 33% 33% 33%;
background-color: #fff;
color: #444;
}
.box {
background-color: #444;
color: #fff;
border-radius: 5px;
padding: 20px;
font-size: 150%;
}
.a {
grid-column: 1 / 3;
grid-row: 1;
}
.b {
grid-column: 3 ;
grid-row: 1;
}
.c {
grid-column: 1;
grid-row: 1;
}
.d {
grid-column: 2 / 4;
grid-row: 1;
}
.e {
grid-column: 2;
grid-row: 1;
}
.row {
grid-column: 1 / 4;
grid-row: auto;
}