-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathstyle.css
More file actions
146 lines (118 loc) · 2.07 KB
/
Copy pathstyle.css
File metadata and controls
146 lines (118 loc) · 2.07 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
html {
background-color: #eee;
height: 100%;
min-width: 320px;
}
body {
padding: 0;
background-color: transparent;
color: #414141;
font-family: 'Open Sans', sans-serif;
}
header {
width: 100%;
text-align: center;
}
header #title {
background-color: rgb(57, 159, 199);
color: white;
font-weight: normal;
font-size: 2em;
padding: 2px 0;
}
header nav {
background-color: #cecece;
}
header nav ul {
list-style: none;
display: inline;
padding: 0;
}
header nav ul li {
display: inline;
}
header nav ul li:not(:last-child):after {
padding: 0 10px;
content: ' -';
}
header a {
color: #414141;
text-decoration: none;
}
.exampleTitle {
font-weight: bold;
}
#wrapper {
padding: 5px 20px;
text-align: center;
margin: 0 auto;
max-width: 800px;
}
#wrapper h3 {
margin-top: 5px;
}
#about img {
border-radius: 70px;
}
#rich {
padding-top: 5px;
}
#ted {
margin-top: 10px;
}
#about .aboutText {
text-align: justify;
}
#games {
text-align: left;
}
#games .game {
padding-bottom: 5px;
padding-top: 15px;
}
#games .game:not(:last-of-type) {
border-bottom: 1px solid #C7C7C7;
}
#games .game:first-of-type {
padding-top: 0;
}
#articles {
text-align: left;
}
#articles .article {
padding-bottom: 5px;
padding-top: 15px;
}
#articles .article:not(:last-of-type) {
border-bottom: 1px solid #C7C7C7;
}
#articles .article:first-of-type {
padding-top: 0;
}
#presentations {
text-align: left;
}
#presentations .presentation {
padding-bottom: 5px;
padding-top: 15px;
}
#presentations .presentation:not(:last-of-type) {
border-bottom: 1px solid #C7C7C7;
}
#presentations .presentation:first-of-type {
padding-top: 0;
}
@media (max-width: 420px) {
header nav ul li {
display: block;
font-size: 1.3em;
padding: 2px 0;
}
header nav ul li:not(:last-child) {
border-bottom: 1px solid #B2B2B2;
}
header nav ul li:not(:last-child):after {
padding: 0;
content: none;
}
}