This repository was archived by the owner on Sep 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmuotoilu.css
More file actions
157 lines (130 loc) · 2.22 KB
/
Copy pathmuotoilu.css
File metadata and controls
157 lines (130 loc) · 2.22 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
html, body {
height: 100%;
}
body {
font-family: Roboto;
/*background-color: #012326; temporarily white*/
display: flex;
flex-direction: column;
}
h1 {
font-family: Racing Sans One;
font-size: 24px;
}
h2 {
font-family: Racing Sans One;
font-size: 18px;
}
h3 {
font-family: Racing Sans One;
font-size: 16px;
}
table, td, th {
border: 2px solid #012840;
width: 600px;
color: #012840;
}
input[type=submit] {
font-family: Racing Sans One;
font-size: 18px;
background-color: #012326;
color: white;
border: none;
padding: 15px 30px;
margin: 15px;
border-radius: 5px;
min-height: 30px;
min-width: 120px;
}
.btn {
font-family: Roboto;
background-color: #012326;
color: white;
border: none;
padding: 5px 15px;
margin: 5px;
border-radius: 5px;
min-height: 30px;
}
.btn:hover, input[type=submit]:hover {
background-color: #F205B3;
transition: 0.3s;
}
.wrapper {
display: flex;
flex-flow: row wrap;
flex: 1 0 auto;
padding: 10px;
}
.wrapper > * {
flex: 1 100%;
}
.footer {
flex-shrink: 0;
color: white;
background-color: #012326;
justify-content: flex-start;
text-align: center;
}
.header {
display: flex;
justify-content: space-between;
flex-flow: row wrap;
align-items: center;
font-family: Racing Sans One;
font-size: 24px;
padding: 5px;
color: white;
background-color: #012326;
}
.main {
padding: 20px;
text-align: left;
}
.aside-1 {
padding: 20px;
text-align: left;
}
.aside-2{
padding: 20px;
text-align: center;
}
.navigation {
display: flex;
color: white;
background-color: #012326;
text-align: center;
}
a {
color:#F205B3;
padding: 14px 16px;
text-decoration: none;
}
a:hover {
color: white;
background-color: #F205B3;
transition: 0.3s;
}
a.imagelink
{
padding: 5px;
}
a.imagelink:hover {
background-color: white;
}
/* Medium screens */
@media all and (min-width: 600px) {
.aside { flex: 1 auto; }
}
/* Large screens */
@media all and (min-width: 800px) {
/* We invert order of first sidebar and main
* And tell the main element to take twice as much width as the other two sidebars
*/
.main { flex: 3 0px; }
.navigation { order: 1;}
.aside-1 { order: 2; }
.main { order: 3; }
.aside-2 { order: 4; }
.footer { order: 5; }
}