-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwosa.css
executable file
·163 lines (160 loc) · 3.31 KB
/
wosa.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
* {
box-sizing: border-box;
}
html, body {
font-family: Verdana,sans-serif;
margin:0;
padding:0;
background-color: #101110;
}
#container {
min-height:100%;
position:relative;
margin-bottom: 60px;
background-color: #101110;
color:white;
}
a {
color:#7e65d6;
}
a:active {
color:darkblue;
}
a:visited {
color:#7e65d6;
}
a:hover {
color: darkblue;
}
.wosaTitle {
background-color: NavajoWhite;
background-color: rgb(255,175,88);
border-bottom:4px solid darkorange;
display: block;
margin:0px;
padding: 18px 10px;
padding-bottom: 2px;
text-align:center; color:black;
}
.wosaIntro {
padding-top: 0px;
margin-top: -10px;
padding-bottom: 0px;
margin-bottom: -5px;
font-size: 14px;
}
.wosaIntro h2 {
text-align: right !important;
padding-top: -10px;
font-size: 14px;
margin-top: 0px;
color: black;
}
.wosaIntro p {
text-align: left;
margin-left: 3%;
margin-right: 3%;
}
.circle-image {
background-color: rgb(255,175,88);
border: 1px solid white;
-webkit-border-radius: 100px;
border-radius: 50%;
-moz-border-radius: 50%;
-o-border-radius: 50%;
}
.content {
max-width:960px;
padding-top: 20px;
margin:auto;
}
.content .circle-image {
margin: -12px 14px 14px 14px;
float:right;
margin-top: -14px;
z-index:1;
border: 4px solid orange
}
#container h1 {
padding: 8px 15px;
margin-bottom: 20px;
list-style: none;
background-color: rgb(41, 40, 40);
border-radius: 0px;
font-size: 1.2em;
}
#container a {
color: #7e65d6;
}
#container a:hover {
color: #3E0BF9;
}
.feature-block {
display: block;
width: 95%;
background-color: dimgray;
padding: 10px;
margin: auto;
margin-bottom: 1em;
}
.feature-title {
font-family: sans-serif;
font-size: 1.1em;
font-weight: bold;
color: black;
}
.feature-content {
display: block;
background-color: #414141;
padding: 12px;
margin-top: 12px;
}
footer {
position: fixed;
padding-top: 80px;
padding: 10px 10px 10px 10px;
bottom: 0;
width: 100%;
min-height:40px; /* Height of the footer */
background-color: rgb(41, 40, 40);
border-top:2px solid dimgray;
text-align:center;
color:white;
font-size: 0.6em;
}
footer a {
color:lightblue;
}
footer a:hover {
color:white;
}
h3 {
margin-top:30px;
}
.table {
border:0px;
margin-top:3%;
}
/* Create three equal columns that floats next to each other */
.column {
float: left;
width: 33.33%;
display: flex;
justify-content: center;
height: 350px;
box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
font-size: smaller;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 730px) {
.column {
width: 100%;
font-size: 12px;
}
}