-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpicturestyle.css
More file actions
128 lines (119 loc) · 1.93 KB
/
picturestyle.css
File metadata and controls
128 lines (119 loc) · 1.93 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
body{
background-color: rgb(39, 37, 37);
color: white;
box-sizing: border-box;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
header{
position: relative;
margin: 0;
height: 100%;
width: 100%;
}
.Home{
text-decoration: none;
color: white;
}
.mountain{
width: 100%;
height: 20rem;
}
.icon {
position: absolute;
top: 10px;
right: 10px;
}
.nature{
color: #CACACA;
margin: 1rem;
font-size: 8px;
}
h2{
margin: 1rem;
}
.author{
color: #E9AA89;
margin: 1rem;
}
.smile{
margin: 1rem;
margin-top: 2rem;
color: #CACACA;
}
h1{
margin: 1rem;
}
.navigation{
display: none;
margin: 1rem;
margin-top: 10rem;
}
.navigationbar {
margin: 2rem;
margin-top: 10rem;
}
.navigationbar h1 {
margin-top: 2rem;
}
.contact{
margin: 1rem;
padding: 1rem;
width: 60%;
}
.close{
position: fixed;
top: 10px;
right: 10px;
}
.menu{
width: 100%;
height: 50rem;
background-color: rgb(39, 37, 37);
position:fixed;
top: 0px;
margin: 0;
}
@media ( min-width: 566px)
{
.mountain{
display: flex;
justify-self: center;
height: 35rem;
width: 35rem;
border-radius: 1rem;
border-top: rgba(0, 0, 0, 0.671) solid 1px;
border-top-left-radius: 0;
border-top-right-radius: 0;
}
h2{
display: flex;
margin: 1rem;
justify-self: center;
}
p{
display: flex;
margin: 1rem;
justify-self: center
}
.icon{
display: none;
}
.smile{
width: 35rem;
}
.navigation{
display: flex;
justify-content: space-between;
margin: 0;
background-color: rgba(0, 0, 0, 0.671);
box-shadow: -1px 6px 30px 0px black;;
}
.nature{
border-top:#CACACA solid 0.5px;
padding: 1rem;
width: 80%;
display: flex;
justify-content: center;
}
}