-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
132 lines (113 loc) · 2.41 KB
/
style.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
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
.header-text {
display: flex;
justify-content: flex-start;
align-content: center;
font-family: "montserrat";
margin-left: 20px;
margin-right: 20px;
}
.light-text {
font-weight: 100;
}
.bold-text {
font-weight: bolder;
}
.paragraph-text {
font-family: "Open Sans";
line-height: 15px;
display: flex;
justify-content: center;
align-content: center;
}
body {
background-image: url("assets/bckgrnd.png");
margin: 0px;
}
.icons-positioning {
background-image: url("bckgrnd.ong");
padding: 50px;
display: flex;
justify-content: space-around;
}
.profile-border {
border: 3px solid #2c5fa8;
border-radius: 50%;
display: block;
margin-left: auto;
margin-right: auto;
}
.lower-background-color {
opacity: 0.6;
background-color: #969696;
padding-left: 20px;
}
.see-my-work {
/* ask how to group side by side */
display: flex;
align-items: center;
flex-direction: column;
justify-content: flex-start;
color: white;
border-bottom: 3px solid white;
width: 110%;
margin-left: -50px;
display: inline-block;
}
.see-my-work-text {
font-size: 30px;
}
.portfolio-images-group {
/* ask how to make only top border visiable */
display: flex;
justify-content: center;
align-content: center;
flex-direction: column;
padding-bottom: 30px;
width: auto;
height: auto;
}
.portfolio-images-individual {
margin: 10px;
}
.top-border {
/* ask how to make only top border visiable */
border-top: 3px solid white;
padding-top: 10px;
width: 110%;
margin-left: -50px
}
@media only screen and (min-width: 600px) {
.header-text {
display: flex;
justify-content: flex-start;
margin: 15px;
padding-left: 50px;
padding-right: 750px;
}
.icons-positioning {
display: flex;
justify-content: flex-start;
align-content: space-between;
}
.portfolio-images-group{
justify-content: space-around;
align-content: center;
flex-direction: row;
}
.see-my-work{
justify-content: flex-start;
padding: 15px;
margin: 0%;
font-weight: 100;
}
.top-border{
margin-right: 10px;
width: 110%;
margin-left: -1px
}
.profile-positioning{
position: absolute;
top: 200px;
right: 100px;
}
}