-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
116 lines (100 loc) · 2.11 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
/*header*/
.header p {
text-transform: uppercase;
font-weight: 700;
font-size: 1.59rem;
letter-spacing: 0.3rem;
}
.a-container {
gap: 1.2rem;
text-transform: uppercase;
font-size: 0.85rem;
}
.header {
justify-content: space-between;
align-items: center;
height: 3.8rem;
padding-inline: 20px !important;
}
.header a:hover {
color: var(--accent-color);
}
/*hero*/
.hero {
font-family: poppins;
justify-content: center;
margin-top: 4.68rem;
padding-inline: var(--padding-inline);
gap: 12px;
}
.hero {
text-transform: uppercase;
font-weight: 700;
letter-spacing: 0.2rem;
}
.hero p {
font-size: 1.05rem;
}
.hero-twitter {
background: linear-gradient(to right, rgb(13, 136, 207), rgb(37, 37, 250));
text-align: center;
font-size: 0.9rem;
padding: 8px 18px;
border-radius: 13.5px;
letter-spacing: 0.1rem;
width: fit-content;
margin-top: 20px;
transition: 0.15s ease-in-out;
display: flex;
align-items: center;
gap: 15px;
}
.hero-twitter:hover {
background: linear-gradient(to left, rgb(12, 127, 194), rgb(34, 34, 230));
font-size: 0.92rem;
}
.hero-about-me {
background: linear-gradient(to right, rgb(255, 0, 43), rgb(10, 10, 255));
text-align: center;
color: white;
font-weight: 700;
font-family: "Segoe UI", Verdana, sans-serif;
text-transform: uppercase;
font-size: 0.9rem;
padding: 8px 18px;
border: none;
border-radius: 13.5px;
letter-spacing: 0.1rem;
width: fit-content;
margin-top: 8px;
transition: 0.15s ease-in-out;
display: flex;
align-items: center;
gap: 15px;
cursor: pointer;
}
.hero-about-me:hover {
background: linear-gradient(
to left,
rgba(199, 22, 52, 0.88),
rgb(38, 38, 204)
);
font-size: 0.92rem;
}
.langs {
margin-top: 12px;
gap: 30px;
}
.langs-imgs {
gap: 15px;
}
.langs-imgs i {
height: 30px;
}
.langs p {
width: fit-content;
font-size: 1.2rem;
background: linear-gradient(to right, red, blue);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}