-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
156 lines (123 loc) · 2.19 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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:wght@500&display=swap');
body {
background-color: #f1f1f1;
color: #0f141e;
font-size: 16px;
font-weight: normal;
font-family: 'Roboto Mono', monospace;
}
a {
text-decoration: none;
color: black;
}
a:hover {
text-decoration: underline;
}
a:active{
color: blue;
}
.Avatar {
width: 200px;
border-radius: 28px;
box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.25);
}
.info p {
color: #86898f;
margin: 0;
font-style: italic;
font-weight: bold;
letter-spacing: 2px;
}
.info-text {
margin-left: 40px;
text-align: justify;
align-items: center;
padding-bottom: 20px;
}
.info-text h2 {
margin-bottom: 10px;
}
.hobby {
padding: 15px 20px;
margin-bottom: 20px;
border-radius: 20px;
background: #fff0f5;
}
.info {
margin-bottom: 20px;
}
.container{
max-width: 750px;
margin: auto;
padding-top: 30px;
}
.card{
padding: 15px 20px;
margin-bottom: 20px;
border-radius: 20px;
}
.bg-yellow {
background: #fff9dc;
}
.bg-green {
background: #e5ffe7;
}
.bg-red {
background: #ffe5e5;
}
.list {
padding: 0px 20px;
}
.list li {
color: #86898f;
margin-bottom: 10px;
}
.table {
width: 100%;
}
.table td {
padding-bottom: 10px;
}
.table td:nth-child(2){
color: #86898f;
}
.contact h2 {
text-align: center;
}
.form-group label{
display: block;
font-size: 15px;
color: #86898f;
}
.form-group input {
width: 100%;
box-sizing: border-box;
border: none;
background: transparent;
border-bottom: 1px solid #ccc;
color: black;
padding: 10px 0 10px;
outline: none;
font-family: inherit;
}
.info {
display: flex;
align-items: center;
}
.btn {
background: black;
padding: 10px 15px;
color: white;
font-family: inherit;
cursor: pointer;
margin-top: 20px;
}
.btn:hover{
opacity: 0.9;
}
@media (max-width: 500px){
.info {
text-align: center;
display: block;
}
}