-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhakkımızda.css
58 lines (51 loc) · 901 Bytes
/
hakkımızda.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.container{
height: 100vh;
width: 100%;
font-family: sans-serif;
position: relative;
}
.header{
width: 80%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
}
ul li{
list-style: none;
display: inline;
padding: 20px;
}
ul li a{
text-decoration: none;
color: black;
padding: 10px;
}
ul li a:hover{
color : #BBFF81;
}
.signin{
padding: 10px;
text-decoration: none;
color: white;
background-image: linear-gradient(to right ,cyan,#00E676 );
border-radius: 2px;
}
.signin:hover{
opacity: 0.7;
}
.content{
width: 100%;
height: 90%;
color: white;
text-align: center;
background-image: linear-gradient(to right top, #37c1e5, #00aae6, #0090e3, #2174d8, #5853c2);
}
.content h3{
padding: 10px;
}