-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
121 lines (103 loc) · 2.04 KB
/
styles.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
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
font-family: 'Lobster Two', cursive;
}
h2{
background-image: linear-gradient(90deg, rgba(200, 130, 0 , 1) 0%, rgba(0,212,255,0.9) 100%);
background-clip: text;
-webkit-background-clip: text;
color: transparent;
}
body{
background: #171321;
color: #fff;
}
a{
color: #fff;
text-decoration: none;
}
#nav-bar{
position: fixed;
top: 0;
right: 0;
left: 0;
z-index: 1;
}
#nav-bar ul{
width: 100%;
background: linear-gradient(90deg, rgb(17, 164, 201) 0%, rgba(0,212,255,1) 100%);
display: flex;
justify-content: space-evenly;
align-items: center;
font-size: larger;
list-style: none;
height: 50px;
}
#nav-bar ul li{
transition: all 300ms cubic-bezier(0.58,-0.59, 0.45, 3.31);
}
#nav-bar ul li:hover{
transform: scale(1.2);
}
#nav-bar ul a{
display: block;
}
main{
top: 20px;
position: relative;
text-align: center;
font-size: 24px;
padding: 30px;
height: 100vh;
width: 100%;
}
.projects-container{
position: absolute;
width: 100%;
left: 0;
right: 0;
}
.projects-container h2{
position: fixed;
left: 20px;
top: 80px;
}
.projects-container li{
padding: 10px;
transition: all 300ms ease;
list-style: none;
border: 1px solid black;
margin: 15px;
background: linear-gradient(90deg, rgba(0,100,255,1) 0%, rgba(0,212,255,1) 100%);
border: none;
border-radius: 10px;
}
.projects-container li:hover{
background: linear-gradient(90deg, rgba(0,100,255,0.9) 0%, rgba(0,212,255,0.9) 100%);
/* border-radius: 20px; */
/* padding-bottom: 20px; */
transform: scale(1.02);
translate: 0 -3px;
}
.projects-container{
width: 80%;
margin: auto;
max-width: 900px;
}
nav li span{
font-size: 1rem;
font-family: 'Times New Roman', Times, serif;
}
@media (max-width: 1200px){
.projects-container{
width: 50%;
margin: auto;
max-width: 900px;
}
body{
font-size: 14px;
}
}