-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
128 lines (111 loc) · 2.19 KB
/
styles.css
File metadata and controls
128 lines (111 loc) · 2.19 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
128
body{
background-color: rgb(243, 242, 242);
}
#headline{
display: flex;
flex-direction: row;
justify-content : space-between;
/* background-color: rgb(1, 242, 1); */
align-items: baseline
}
#top{
display: flex;
flex-direction: row;
justify-content : space-between;
/* background-color: rgb(1, 242, 1); */
align-items: baseline
}
#name{
/* background-color: rgb(1, 242, 242); */
margin-left: 25px;
}
h1 {
font-family: "Courier New", monospace;
}
a {
font-family: "Courier New", monospace;
}
#top{
display: flex;
flex-direction: row;
flex-wrap: wrap ;
justify-content :left;
/* background-color: rgb(0, 242, 242); */
}
.n0{
/* margin-right: 5px ; */
margin-left: 5px ;
margin-top: 5px ;
margin-bottom: 5px ;
/* background-color: rgb(0, 0, 242); */
}
.n1{
margin-right: 5px ;
margin-left: 0px ;
margin-top: 5px ;
margin-bottom: 5px ;
/* background-color: rgb(0, 0, 242); */
}
.n2{
margin: 5px;
/* background-color: rgb(0, 0, 242); */
}
.projects{
display: flex;
flex-direction: row;
flex-wrap: wrap ;
justify-content : left;
/* background-color: rgb(243, 242, 242); */
text-align: center;
}
.project{
/* background-color: rgb(73, 73, 73); */
width: 400px;
height: 400px;
border-radius: 25px;
margin: 25px;
}
.project img{
width: 100%;
border-radius: 2%;
}
#contact{
display: flex;
flex-direction: row;
flex-wrap: wrap ;
justify-content :right;
/* background-color: rgb(243, 242, 1); */
margin: 10px;
}
.logo{
margin: 5px;
border: 2px solid black;
width: 48px;
height: 48px;
border-radius: 10px;
overflow: hidden;
}
.logoEmpty{
margin: 5px;
width: 48px;
height: 48px;
}
.hr-container {
text-align: center;
}
hr {
width: 80%;
border: 1px solid rgb(42, 204, 72);
margin: 10px auto;
flex: 1 1 auto;
}
.label {
position: relative;
top: -10px;
/* display: inline-block; */
padding: 0 5px;
background-color: rgb(223, 11, 11);
color: #333;
font-size: 58px;
font-family: "Courier New", monospace;
}