-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsourcecodecss.txt
More file actions
130 lines (122 loc) · 2.36 KB
/
sourcecodecss.txt
File metadata and controls
130 lines (122 loc) · 2.36 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
129
130
*{
margin: 0px;
padding: 0px;
box-sizing: box-border;
scroll-behavior: smooth;
}
nav {
display: flex;
justify-content: space-around;
align-items: center;
min-height: 10vh;
background-color: #00afc2;
font-family: 'Rubik Mono One', sans-serif;
position: fixed;
width: 100%;
z-index: 1;
}
.logo {
color: #f7f8fa;
letter-spacing: 3px;
font-size: 25px;
font-weight: bold;
}
.stylemenu {
display: flex;
justify-content: space-around;
width: 40%;
font-size: 15px;
cursor: pointer;
transition: 0.9s;
}
.stylemenu li{
list-style: none;
}
.stylemenu a{
color: whitesmoke;
text-decoration: none;
letter-spacing: 3px;
font-weight: bold;
}
.li1:hover, .li2:hover, .li3:hover{
background-color: #160063;
}
.profileimage{
display: flex;
justify-content: left;
float: left;
position: relative;
top: 205px;
left: 40px;
margin: 10px
}
.intro{
display: flexbox;
font-size: 25px;
position: relative;
top: 285px;
text-align: center;
font-family: 'Fredoka One', cursive;
}
.about{
display: flexbox;
justify-content: space-around;
float: right;
margin-top: 35px;
padding: 35px;
position: relative;
top: 300px;
text-align: center;
background-color: #D5DBDB ;
color: #2C3E50 ;
font-family: 'Rubik Mono One', sans-serif;
}
.profile1{
position: relative;
right: 10px;
}
.profile2 {
float: left;
margin-right: 20px;
}
.work{
display: flexbox;
align-items: center;
justify-content: space-around;
float: right;
padding: 93px;
position: relative;
top: 300px;
text-align: left;
background-color: white ;
color: black ;
font-family: 'Rubik Mono One', sans-serif;
}
.profile3 {
float: right;
margin-right: 20px;
}
.contact{
display: flexbox;
align-items: center;
justify-content: space-around;
float: right;
padding: 100px;
position: relative;
top: 300px;
text-align: left;
background-color: #D5DBDB ;
color: #2C3E50 ;
font-family: 'Rubik Mono One', sans-serif;
}
.footer{
text-align: center;
justify-content: space-around;
width: 97%;
padding: 20px;
background-color: #2E86C1;
color: black;
position: absolute;
top: 2332px;
font-family: 'Fredoka One', cursive;
}