-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
122 lines (113 loc) · 1.81 KB
/
style.css
File metadata and controls
122 lines (113 loc) · 1.81 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
body{
font-family: 'Josefin Sans', sans-serif;
color:#333333;
background-color: #FDFDFD;
line-height: 1;
}
a{
color:#2557A7;
}
h1{
color:#333333;
font-size: 2em;
text-align: center;
}
h2 {
color:#0F408E;
}
h3{
color:#262525;
}
h3, h4{
font-weight: normal;
}
nav a{
text-decoration: none;
letter-spacing: 2pt;
color: #FFF;
}
nav{
width:150px;
height: 100%;
margin:0;
padding: 0;
top:0;
left:0;
position:fixed;
background-color: #333333;
color:#FFF;
}
nav ul {
padding-left: 0px;
margin-left: 10px;
}
nav li {
display: block;
width: auto;
height: auto;
border-bottom-width: 1px;
border-bottom-style: solid;
border-bottom-color: #Fff;
list-style-type: none;
}
nav li a{
line-height: 2;
font-size: 14px;
}
section{
padding: 0px 20px 20px 20px;
margin: 20px 20px 20px 160px;
border: 1px solid #B2B2B2;
}
article{
min-height:160px;
}
hr{
border: 0;
height: 1px;
background-image: linear-gradient(to right, #F4AC2E, #855400, #F4AC2E);
}
img{
display: block;
width: 105px;
height:150px;
float: left;
padding-right: 15px;
padding-bottom: 10px;
}
#flexx{
float: right;
display: flex;
flex-direction: row;
justify-content: center;
align-content: flex-start;
height:auto;
max-width: 300px;
}
figure{
margin: 0px;
}
figure img{
display: block;
width: 75px;
height:100px;
text-align: center;
padding: 0px 5px 5px 5px;
}
figcaption{
font-size: 10px;
text-align: center;
}
.choice{
height:120px;
width:250px;
overflow: auto;
border: 1px solid #B2B2B2;
}
.container{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: stretch;
justify-content: space-around;
}