-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyles.css
158 lines (133 loc) · 3.16 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
@import url('https://fonts.googleapis.com/css2?family=Itim&display=swap');
*, *::before, *::after {
box-sizing: border-box;
}
body {
padding: 0;
margin: 0;
background-color: #B6B6B6;
background-image: url(images/brushbackround2.jpg);
background-size: cover;
font-family: Itim, sans-serif;
font-size: 1.2rem;
color: white;
min-height: 100vh; /* na blepo oli thn othoni*/
}
.full-height-grow {
display: flex;
flex-direction: column;
}
.brand-logo {
display: flex; /* to ena dipla sto allo*/
align-items: center; /* ta grammata sthn idia grammh*/
font-size: 1.25em; /*megethos grammaton*/
color: inherit; /* xroma grammaton*/
text-decoration: none;
}
.brand-logo-name {
margin-left: 1rem; /*poso apexei to logo apo to onoma*/
}
.main-nav ul, .footer-nav ul {
display: flex; /*to ena dipla sto allo*/
margin: 0;
padding: 0;
list-style: none; /*bgazei tis voules apo to list*/
}
.main-nav a, .footer-nav a {
color: inherit; /*aspra*/
text-decoration: none; /*remove underline*/
padding: 1rem; /*dinei xvro*/
}
.main-nav a:hover, .footer-nav a:hover {
color: #adadad; /*otan pas panv na allazei xroma*/
}
.main-header, .main-footer {
display: flex; /*bazei olo to header/footer sthn seira*/
justify-content: space-between; /*as far as possible*/
align-items: center;
}
.main-header {
height: 140px; /*to jekolaei apo pano*/
}
.main-footer {
height: 70px;
background-color: #202027;
font-weight: bold;
}
.social-link img {
width: 1em;
margin-right: .25rem;
}
.main-footer .container {
display: flex;
justify-content: space-between;
}
.container {
max-width: 1200px; /*bazei xoro dejia aristera gia to body*/
margin: 0 auto;
padding: 0 40px; /*bazei xoro dejia aristera*/
flex-grow: 1;
}
.title { /*ti simainei titlos*/
font-weight: 500;
font-size: 2.2em;
margin-bottom: 1rem;
margin-top: 0;
}
.subtitle { /*ti simainei ipotitlos*/
font-weight: 500;
font-size: 1.2em;
margin-bottom: 2rem;
}
.btn { /*ti simainei button*/
color: white; /*xroma gia grammata*/
background-color: #132533; /*xroma koumpiou*/
padding: .75rem 1.5rem;
border-radius: .5rem; /*round corners*/
text-decoration: none;
font-size: 1rem;
outline: none;
border: none;
cursor: pointer;
}
.btn:hover {
background-color: #2180d8;
}
.btn:focus {
background-color: #2796ff;
}
.btnem {
margin-top: 10px;
color: white;
background-color: rgba(15, 33, 49, 0.72);
padding: .75rem 1.5rem;
border-radius: .5rem;
text-decoration: none;
font-size: .7rem;
outline: none;
border: none;
cursor: pointer;
}
.btnem:hover {
background-color: #d82164;
}
.btnem:focus {
background-color: #d82164;
}
.btnlog {
color: white;
background-color: #132533;
padding: .75rem 1.5rem;
border-radius: .5rem;
text-decoration: none;
font-size: 1rem;
outline: none;
border: none;
cursor: pointer;
}
.btnlog:hover {
background-color: #d82164;
}
.btnlog:focus {
background-color: #d82164;
}