-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
138 lines (130 loc) · 2.28 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100%;
}
/* ********HEADER********* */
.header {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
background-color: #35424a;
height: 125px;
padding: 0px 25px;
width: 100%;
border-bottom: 3px solid #a9508b;
}
.header .header__div--left {
display: flex;
flex-wrap: wrap;
}
.header div span {
color: #a9508b;
}
.header div h1 {
color: white;
}
.header .header__nav--rigth a {
text-decoration: none;
color: white;
font-size: 1.3rem;
}
#active:visited{
color: #a9508b;
}
.header .header__nav--rigth {
display: flex;
flex-wrap: wrap;
justify-content: end;
gap: 25px;
}
.header__nav--rigth a:hover{
outline: 5px inset gray;
outline-offset: 7px;
outline-width: 7px;
transform: rotate(5deg);
}
/* *********MAİN********** */
.main {
background-image: url(img/showcase.jpg);
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
height: 650px;
background-position: center;
display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
}
.main > h2 {
color: white;
opacity: 0.7;
font-size: 3.5rem;
}
.main > p {
color: white;
opacity: 0.7;
font-size: 1.5rem;
}
/* **********ASİDE********* */
.aside {
width: 100%;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
background-color: #35424a;
height: 100px;
}
.aside p,
.aside .aside__div-input-button {
margin: 0 5rem;
}
.aside p{
color:white;
font-size: 1.5rem;
}
.aside__div-input-button input {
margin-right: 0.1rem;
padding: 0.7rem;
border: 1px solid #e8491d;
}
.aside__div-input-button > button {
background-color: #e8491d;
color: aliceblue;
border: none;
padding: 0.8rem;
}
/* *********SECTİON******** */
section {
width: 100%;
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
section p,
section h3 {
width: 150px;
height: 100%;
}
.section__div--letf,
.section__div--middel,
.section__div--rigth {
padding: 25px 0px;
}
/* *********FOOTER********** */
footer {
padding: 15px;
background-color: #35424a;
text-align: center;
color: aliceblue;
}