-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
103 lines (98 loc) · 1.63 KB
/
stylesheet.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
body{
height: 100%;
background-color:#9da3a8;
}
.flex_container {
display: flex;
flex-direction: column;
margin: 0 auto;
padding: 5px;
height: 100%;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
height: 25%;
padding-bottom:20px;
padding-top:20px;
background-color: #444647;
}
.logo img {
border-radius: 50%;
border: 5px solid #2d2d2e;
width: 100px;
height: 100px;
margin-left: 10px;
}
.about_me {
display: flex;
flex-direction: column;
flex: 1 0 auto;
}
.data {
display:flex;
align-items: center;
}
.data div {
margin-left: 50px;
margin-right: 50px;
margin-bottom: 10px;
}
.myInfo {
font-family: monospace;
font-size: 1.2rem;
font-weight: 500;
}
.myImage img{
border-radius: 3%;
}
.knowledge {
font-family: monospace;
font-size: 1.2rem;
justify-content: center;
font-weight: 400;
margin-left: 20px;
margin-right:20px;
}
.footer {
flex: 0 0 auto;
background-color: #444647;
}
.footer h2{
color: #eb6e49;
}
.article {
margin-top: 2em;
font-family:monospace;
font-size:1.2rem;
font-weight:400;
}
h2 {
color: black;
text-align: center;
font-size: 2rem;
font-family: monospace;
font-weight:400;
}
h1 {
text-align: center;
font-family: monospace;
font-size:2.5rem;
font-weight:600;
}
ul {
display: flex;
list-style-type: none;
}
ul li {
margin-right: 30px;
margin-left: 30px;
}
li a {
text-decoration: none;
font-family:monospace;
font-size: 1.5rem;
font-weight: 500;
color: #eb6e49;
}