-
Notifications
You must be signed in to change notification settings - Fork 0
/
developer.css
109 lines (86 loc) · 1.25 KB
/
developer.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1)),
url(images/deskw.jpg) ;
background-size:100% 100%;
background-attachment: fixed;
display: flex;
align-items: center;
justify-content: space-around;
width: 100%;
height: 100vh;
position: absolute;
}
.container {
background-color: #c68b59;
width: 30%;
text-align: center;
padding: 2em;
background-color: rgba(0, 0, 0, 0.5);
box-shadow: 0 8px 8px -4px lightblue;
}
h1,
h2,
p,
h3 {
font-family: "Merriweather", serif;
color: white;
margin: 1em 0;
}
h1 {
color: #ffe194;
}
a {
text-decoration: none;
color: inherit;
}
img {
width: 14.375em;
height: 13.125em;
border-radius: 50%;
border: solid 2px white;
}
i {
color: white;
font-size: 2em;
}
.font-container {
margin: 1em;
}
i:hover {
color: #ffe194;
}
i {
margin-right: 1em;
}
@media (max-width:1000px) {
img {
width: 13.175em;
height: 12.125em;
}
.container{
width: 60%;
}
body{
flex-direction: column;
}
.container{
margin-top: 3rem;
}
.contactForm{
margin:2rem;
}
}
@media (max-width:600px) {
img {
width: 10.175em;
height: 9.125em;
}
.container{
width: 60%;
}
}