-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (120 loc) · 2.26 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
body {
margin: auto;
font-family: 'Lato', sans-serif;
font-size: 1.6rem;
line-height: 11.5px;
font-weight: 400;
text-align: left;
background-color: #f1f1f1;
padding-bottom: 230px;
}
p {
font-size: medium;
justify-content: space-between;
line-height: 16px;
text-align: left;
}
h1 {
font-size: 30px;
line-height: 150%;
text-align: center;
}
h2 {
font-size: 20px;
}
main {
width: 90vw;
margin: 0 auto;
padding: 30px 20px;
text-align: left;
}
a {
color: #007bff;
}
header {
text-align: center;
background-color: #333;
color: #fff;
padding: 5px;
}
footer {
position: fixed;
text-align: center;
background-color: #004ea8;
color: #fff;
padding: 30px;
bottom: 0;
width: 100%;
}
.footer-design img{
cursor: pointer;
border-radius: 50%;
box-shadow: rgb(0, 0) 10px 10px;
align-content: center;
}
.img-arbeidsplass img{
float: left;
width: 33.33%;
padding: 5px;
}
.img-praksisplass img{
float: left;
width: 33.33%;
padding: 5px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.contact-info ul {
transform: translate(-50%, -50%);
padding: 0;
margin: 0;
display: flex;
align-items: center;
}
.contact-info ul li {
list-style: none;
margin: 0 10px;
}
.contact-info ul li .fa {
color: #000000;
font-size: 25px;
line-height: 50px;
transition: .5s;
}
.contact-info ul li .fa:hover {
color: #ffffff;
}
.contact-info ul li a {
display: block;
margin: auto;
width: 50px;
height: 50px;
border-radius: 50%;
background-color: white;
transition: 0.5s;
transform: translate(0,0px);
box-shadow: 0px 7px 5px rgba(0, 0, 0, 0.5);
}
.contact-info ul li a:hover {
transform: rotate(0deg) skew(0deg) translate(0, -10px);
}
.contact-info ul li:nth-child(1) a:hover {
background-color: #3b5999;
}
.contact-info ul li:nth-child(2) a:hover {
background-color: #30363d;
}
.contact-info ul li:nth-child(3) a:hover {
background-color: #cd201f;
}
.contact-info {
display: flex;
justify-content: center;
flex-wrap: center;
position: relative;
top: 40px;
left: 110px;
}