-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
129 lines (111 loc) · 2.37 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html {
scroll-behavior: smooth;
}
body{
background-image: linear-gradient(to right, rgb(13, 5, 62), rgb(69, 6, 115));
color: aliceblue;
font-family: 'Poppins';
line-height: 50px;
}
h1{
text-align: center;
background-image: linear-gradient(to right, rgb(0, 208, 255), rgb(0, 255, 140));
-webkit-background-clip: text;
color: hsla(32, 100%, 88%, 0);
font-size:10vh;
left: 0;
line-height: 120px;
letter-spacing: 5px;
flex-direction: row;
flex-wrap: wrap;
}
.container{
height: 55px;
position: static;
}
.fixed{
width: 100vw;
background-color: rgba(0, 0, 0, 0.251);
position: fixed;
z-index: 1;
}
ul{
font-size: 24px;
list-style-type:none;
padding-left: 0;
padding-right: 20px;
text-align: right;
padding-top: 10px;
}
li{
display: inline-block;
margin-inline: 10px;
}
li a{
color: aliceblue;
text-decoration: none;
}
li a:hover{
background-image: linear-gradient(to right, rgb(72, 255, 0), rgb(12, 255, 255));
-webkit-background-clip: text;
color: hsla(32, 100%, 88%, 0);
}
h2{
color: aliceblue;
font-size: 64px;
text-align: center;
}
.about{
color: aliceblue;
font-size: 36px;
margin-left: 5vw;
margin-right: 5vw;
text-align: center;
}
.container2{
max-width: 2500px;
min-width: 400px;
margin-inline: auto;
border: 1px solid rgba(0, 0, 0, 0);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
}
.box{
min-width: 100px;
height: 175px;
background-color: rgba(0, 0, 0, 0);
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
}
.container3{
max-width: 2500px;
min-width: 400px;
margin-inline: auto;
border: 1px solid rgba(0, 0, 0, 0);
display: flex;
justify-content: center;
align-items: center;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
}
.box1{
min-width: 100px;
height: 175px;
background-color: rgba(0, 0, 0, 0);
padding: 2rem;
display: flex;
justify-content: center;
align-items: center;
}