-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
95 lines (82 loc) · 1.33 KB
/
styles.css
File metadata and controls
95 lines (82 loc) · 1.33 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
@font-face {
font-family: "TASA";
src: url("webfont/TASAOrbiterVF.woff2") format('woff2');
}
body {
background-color: white;
}
body {
font-family: 'TASA', sans-serif;
font-size: 21px;
margin: 5% 20% 10% 25%;
line-height: 26px;
color: black;
}
@media screen and (max-width: 900px) {
body {
margin: 10% 10% 10% 10%;
}
}
@media screen and (max-width: 450px) {
body {
margin: 10% 5% 10% 10%;
font-family: 'Helvetica', sans-serif;
font-size: 13px;
line-height: 16px;
color: black;
}
}
img {
margin: 5% 20% 10% -10%;
}
h1 {
font-family: 'Helvetica', sans-serif;
line-height: 42px;
}
body a {
background: linear-gradient(to bottom, var(--mainColor) 0%, var(--mainColor) 100%);
background-position: 0 100%;
background-repeat: repeat-x;
background-size: 2px 2px;
color: black;
text-decoration: underline;
}
* {
box-sizing: border-box;
}
.picture-section {
width: 33.33%;
float: left;
}
.about-section {
width: 66.66%;
float: left;
padding: 0 0 0 40px;
}
.nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
.nav li {
float: right;
margin-right: 10px;
}
.nav .name {
float: left;
}
.nav li a {
display: block;
text-align: center;
text-decoration: none;
}
.nav {
margin: -30px 0 50px 0;
}
a:hover {
text-decoration: none;
}
.selected {
margin-top: 100px;
}