-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
140 lines (139 loc) · 2.33 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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/* styles.css */
@import url(
"https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
form {
margin: auto;
max-width: 50%;
margin-bottom: 20px;
}
h1 {
color: #00a136;
font-size: 2.5rem;
margin: auto;
text-align: center;
text-shadow: 2px 2px 4px
rgba(0, 0, 0, 0.2);
transition: transform 0.3s
ease-in-out;
}
h1:hover {
transform: scale(1.1);
}
.inputForm input {
width: 80%;
margin: auto;
margin-top: 20px;
display: block;
background-color: #f0e1c6;
border: 2px solid #00a136;
border-radius: 7px;
color: #333;
font-weight: bold;
padding: 10px;
}
.inputForm input::placeholder {
color: #666;
font-weight: bold;
}
.inputForm input:focus {
outline: none;
border-color: #007bff;
box-shadow: 0 5px 10px
rgba(0, 0, 0, 0.2);
}
.card {
max-width: 50%;
background-color: rgb(
141,
240,
243
);
border-radius: 20px;
box-shadow: 0 5px 10px
rgba(0, 0, 0, 0.1);
display: flex;
padding: 2rem;
margin: auto;
}
.avatar {
border-radius: 50%;
border: 4px solid #00a136;
height: 150px;
width: 150px;
transition: transform 0.3s
ease-in-out;
}
.avatar:hover {
transform: scale(1.1);
}
.user-info {
color: #333;
margin-left: 2rem;
padding: 1rem;
background-color: rgba(
255,
255,
255,
0.9
);
border-radius: 10px;
box-shadow: 0 0 10px
rgba(0, 0, 0, 0.2);
}
.user-info h2 {
margin-top: 0;
font-size: 1.5rem;
color: #007bff;
}
.user-info p {
font-size: 1rem;
margin-top: 0.5rem;
}
.user-info ul {
list-style-type: none;
display: flex;
justify-content: space-between;
padding: 0;
max-width: 400px;
margin-top: 1rem;
}
.user-info ul li {
display: flex;
align-items: center;
}
.user-info ul li strong {
font-size: 0.9rem;
margin-left: 0.5rem;
color: #007bff;
}
.repo {
text-decoration: none;
color: #fff;
background-color: #ff1500;
font-size: 0.9rem;
padding: 0.4rem 0.8rem;
margin-right: 0.5rem;
margin-bottom: 0.5rem;
display: inline-block;
border-radius: 9px;
transition: background-color 0.3s,
transform 0.2s;
}
.repo:hover {
background-color: #cc0c00;
transform: scale(1.05);
}
@media (max-width: 500px) {
.card {
flex-direction: column;
align-items: center;
}
.inputForm {
max-width: 400px;
}
}