-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (63 loc) · 1.28 KB
/
style.css
File metadata and controls
78 lines (63 loc) · 1.28 KB
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
*{
padding: 0%;
margin: 0%;
font-family: 'Poppins',cursive;
box-sizing: border-box;
}
body{
background: url("images/kiminonawa.jpg")no-repeat;
background-position: center;
background-size: cover;
width: 100%;
height: 100vh;
overflow: hidden;
}
.container{
display:flex;
justify-content: center;
align-items: center;
flex-direction: column;
margin: 30px 0;
width: 100%;
height: 100vh;
}
h1{
margin-bottom:20px ;
font-family: 'Poppins', sans-serif;
font-weight: 600;
font-size: 40px;
color: #fff;
text-shadow: #333333 2px 5px;
}
.logo{
width: 150px;
height: 150px;
border-radius: 50%;
border: 2px solid #fff;
}
ul{
list-style: none;
}
ul li{
display: flex;
justify-content: center;
align-items: center;
}
ul li a{
text-decoration: none;
color: #333333;
font-size: 1.5rem;
}
.social-media{
padding: 15px 100px;
margin: 20px 10px;
border-radius: 50px ;
background-color: #fff;
box-shadow: 2px 6px rgba(0,0,0,0.4);
transition: all ease .3s;
}
.social-media:hover{
background: linear-gradient(rgba(0,0,0,0.4));
background-color:pink ;
font-size: 1.6rem;
}