-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
104 lines (87 loc) · 1.39 KB
/
style.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
body {
margin: 0;
font-family: arial;
line-height: 1.5;
}
.header {
background-color: #069;
color: white;
text-align: center;
padding: 1.5rem;
}
.header__title {
margin: 0;
}
.section {
padding: 1rem 2rem;
}
.section--accent {
background-color: #069;
color: white;
}
.section__content {
padding-left: 1rem;
}
.skills__list {
list-style: none;
margin: 0;
font-size: 1.2rem;
font-style: italic;
}
.project__list {
list-style: none;
margin: 0;
color: #777;
}
.project__item {
margin-bottom: 1rem;
}
.project__item:last-child {
margin: 0;
}
.project__image {
width: 150px;
height: 150px;
object-fit: cover;
object-position: top;
}
.contact__form {
margin: 2rem 0;
}
.input {
border: 1px solid #aaa;
outline: none;
padding: 0.5em;
font-size: 1rem;
border-radius: 0.2em;
font-family: inherit;
line-height: inherit;
}
.input:focus {
border-color: #069;
box-shadow: 0 0 5px 0 #069;
}
.input--no-resize {
resize: none;
}
.btn {
background-color: hsl(200, 100%, 30%);
border: 1px solid hsl(200, 100%, 10%);
border-radius: 0.3em;
cursor: pointer;
padding: 0.5em 1em;
outline: none;
color: white;
}
.btn:hover,
.btn:focus {
background-color: hsl(200, 100%, 20%);
box-shadow: 0 0 5px 0 hsl(200, 100%, 10%);
}
.footer {
background-color: #069;
color: white;
font-size: 1.25rem;
padding: 1.5rem;
text-align: center;
}