-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
118 lines (98 loc) · 1.78 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
body {
background-color: #000;
color: #0f0;
font-family: 'Courier New', Courier, monospace;
margin: 0;
padding: 20px;
line-height: 1.6;
direction: rtl; /* متنها به صورت پیشفرض راستچین باشن */
}
/* برای متنهای انگلیسی، جهت چپچین تنظیم بشه */
.english-text {
direction: ltr;
text-align: left;
}
.terminal {
max-width: 800px;
margin: 0 auto;
}
.header {
font-size: 1.2em;
margin-bottom: 20px;
}
.title {
font-weight: bold;
}
.cursor {
animation: blink 1s infinite;
}
@keyframes blink {
0%, 100% { opacity: 1; }
50% { opacity: 0; }
}
.command {
color: #0f0;
}
.typewriter {
display: inline-block;
overflow: hidden;
white-space: nowrap;
animation: typing 2s steps(40, end);
}
@keyframes typing {
from { width: 0; }
to { width: 100%; }
}
.input {
display: inline-block;
min-width: 10px;
outline: none;
caret-color: #0f0;
}
.skill-level {
color: #0f0;
font-weight: bold;
}
.hidden {
display: none;
}
.section {
margin-top: 20px;
}
/* استایلهای کارت پروژه */
.project-card {
background-color: #111;
border: 1px solid #0f0;
border-radius: 8px;
padding: 15px;
margin: 20px 0;
display: flex;
align-items: center;
}
.project-image {
width: 100px;
height: 100px;
border-radius: 8px;
margin-left: 15px;
}
.project-details {
flex: 1;
}
.project-title {
color: #0f0;
font-size: 1.2em;
margin: 0 0 10px 0;
}
.project-description {
color: #ccc;
font-size: 0.9em;
margin: 0 0 10px 0;
}
.project-link {
color: #0f0;
text-decoration: none;
font-weight: bold;
}
.project-link:hover {
text-decoration: underline;
}