forked from thecomputerfella/shwet-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles_css.css
118 lines (102 loc) · 1.62 KB
/
articles_css.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
html,body{
margin: 0;
padding: 0;
justify-items: center;
/* overflow-x: hidden; */
font-family: 'PT Sans', sans-serif;
color: #777777;
}
#heading{
display: flex;
flex-direction: column;
}
#short_head{
margin-top:7vh;
font-size: 1.2em;
/* justify-self: center;
align-content: center; */
text-align: center;
}
#big_head{
margin-top:1vh;
font-size: 1.5em;
text-align: center;
}
#all_articles{
margin-top: 8vh;
margin-left: 5vw;
display: flex;
flex-direction: column;
}
#article_1{
display: flex;
flex-direction: row;
}
#article_desc{
margin-left: 1vw;
}
#article_img{
height:50px;
width: 50px;
background: #f2f2f2;
}
#article_2{
margin-top: 5vh;
display: flex;
flex-direction: row;
}
#article_3{
margin-top: 5vh;
display: flex;
flex-direction: row;
}
#article_4{
margin-top: 5vh;
display: flex;
flex-direction: row;
}
#article_5{
margin-top: 5vh;
display: flex;
flex-direction: row;
}
a:link{
color: #777777;
text-decoration: none;
}
#footer{
justify-self: end;
display: flex;
flex-direction: row;
height: 15vh;
margin-left: 5vw;
}
#email{
cursor: pointer;
margin-top: 6vh;
}
#behance{
cursor: pointer;
margin-left: 3vw;
margin-top: 6vh;
}
#dribbble{
cursor: pointer;
margin-left: 3vw;
margin-top: 6vh;
}
#linkedin{
cursor: pointer;
margin-left: 3vw;
margin-top: 6vh;
}
#twitter{
cursor: pointer;
margin-left: 3vw;
margin-top: 6vh;
}
#copyright{
margin-top: 6vh;
position: absolute;
right: 5vw;
}