-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcoffe.css
125 lines (123 loc) · 1.94 KB
/
coffe.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
*{
margin:0;
padding:0;
box-sizing: border-box;
}
header{
width: 100%;
height: 100vh;
background: lightblue;
background-image: linear-gradient(
rgba(97 ,47, 18, .7),
rgba(97 ,47, 18, .7)
),
url("dark.jpg");
background-size: cover;
background-position:initial;
}
.navbar{
height: 10%;
display: flex;
}
.nav-left{
flex-basis: 30%;
background: white;
position: relative;
}
.nav-icons{
left: 5%;
position: absolute;
}
.nav-icons ul li{
display: inline-block;
margin-right: 10px;
}
.nav-icons ul li i{
color:grey;
}
.nav-right{
flex-basis: 70%;
position: relative;
}
.nav-menu{
top: 20%;
right: 2px;
position: absolute;
}
.nav-menu ul li{
display: inline-block;
margin-left: 15px;
}
.nav-menu ul li a{
text-decoration: none;
color:white;
}
.nav-menu ul li a:hover{
border-bottom: 1px solid white;
padding-bottom: 5px;
}
.logo{
font-family: 'Luxurious Script', cursive;
font-size: 35px;
}
.content{
height:90%;
display: flex;
}
.content-left{
flex-basis: 30%;
background: white;
position: relative;
}
.socialmedia{
left: 5%;
bottom: 5%;
position: absolute;
}
.socialmedia ul li{
list-style: none;
height: 30px;
width: 30px;
margin: 10px;
background: grey;
text-align: center;
line-height: 30px;
}
.socialmedia ul li i{
color: white;
}
.socialmedia ul li i:hover{
color: turquoise;
}
.content-right{
flex-basis:70%;
position: relative;
}
.text{
right:10%;
bottom: 15%;
position: absolute;
}
.text h1, p{
color:white;
font-family: 'Smooch', cursive;
}
.text h1{
color:white;
font-family: 'Smooch', cursive;
font-size: 60px;
}
.text p{
color:white;
font-family: 'Smooch', cursive;
font-size: 25px;
}
.display{
left: -20%;
bottom: 15%;
position: absolute;
}
.display img{
height: 50%;
width:50%;
}