-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (122 loc) · 2.89 KB
/
style.css
File metadata and controls
127 lines (122 loc) · 2.89 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
nav {
background-color: blue;
background-image: linear-gradient(to right, rgb(151, 12, 151), yellow, purple);
font-family: 'Oswald', sans-serif;font-size:15px;
font-weight: 700;
min-height: 18vh;
min-width: 100vw;
position: fixed;
top: 0;
}
.inner_main_menu {margin: 0 auto;}
.inner_main_menu ul{
margin: 0; padding: 0;
list-style: none;
text-align: right; top: 59.75px;
}
.inner_main_menu ul li{float: none; display: inline-block}
.inner_main_menu ul li:nth-child(1){float: left;}
.inner_main_menu ul li:nth-child(2){float: left;}
.inner_main_menu ul li:nth-child(3){float: left;}
.inner_main_menu ul li a{
color: #702727;
font-size: 20px;
text-transform: uppercase;
text-decoration: none;
display: block;
padding: 10px 20px;
padding-top: 40px;
}
.inner_main_menu ul li a:hover{color: #6FDA44;}
#main_menu{width: 100%;
position: relative;}
.logo_area {
width: "135.5px"; height: "119.5";
position: absolute;
left: 50%; top: 0; content: "";
margin-left: -67.75px;
}
body {
background: url(https://i.stack.imgur.com/SvWWN.png) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
margin: 0;
/* background-image: url(https://i.stack.imgur.com/SvWWN.png);
background-repeat: no-repeat;
background-attachment: fixed; */
}
.name {
font-family: 'Oswald', sans-serif;
font-size: x-large;
font-weight: 500;
display: flex;
justify-content: center;
text-align: center;
padding-top: 4rem;
padding-right: 10rem;
padding-left: 10rem;
}
.contact {
font-family: 'Oswald', sans-serif;
font-size: x-large;
font-weight: 500;
display: flex;
justify-content: center;
padding-top: 4rem;
}
.bio {
font-family: 'Oswald', sans-serif;
font-size: x-large;
font-weight: 500;
display: flex;
justify-content: center;
padding-top: 4rem;
padding-right: 10rem;
padding-left: 10rem;
}
.projects {
font-family: 'Oswald', sans-serif;
font-size: x-large;
font-weight: 500;
display: flex;
justify-content: center;
padding-top: 4rem;
padding-right: 10rem;
padding-left: 10rem;
}
.text-body {
padding: 16px;
margin-top: 18vh;
}
footer{
font-family: 'Oswald', sans-serif;
display: flex;
justify-content: center;
color: blue;
font-weight: 200;
margin-bottom: 2rem;
}
.name{
padding-top: 18vh;
}
@media (max-width: 992px) {
.name, .contact, .bio, .projects {
padding-left: 2rem;
padding-right: 2rem;
}
}
@media (max-width: 595px) {
.name, .contact, .bio, .projects {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.inner_main_menu > ul, #main_menu {
display: flex;
flex-wrap: wrap;
}
.logo_area {
position: relative;
}
}