-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles3.css
128 lines (109 loc) · 2.12 KB
/
styles3.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
*{
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
background-color: #2B3467;
}
.hero{
position: relative;
width: 100%;
height: 100vh;
}
.logo{
width: 20%;
height:20%;
}
nav{
display: flex;
width: 84%;
margin: auto;
padding: 20px 0;
align-items: centre;
justify-content: space-between;
}
nav ul li{
display: inline-block;
list-style: none;
margin: 10px 20px;;
}
.underline{
text-decoration: none;
color: #BAD7E9;
position: relative;
cursor: pointer;
}
.underline:after{
content: "";
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
color: #EB455F;
background-color: #EB455F;
transition: width 0.4s ease-in-out;
}
.underline:hover:after {
width: 100%;
}
.underline:hover{
color: #EB455F;
transition: ease-in-out;
}
.heading{
color: #BAD7E9;
text-decoration-thickness: 2px;
font-size: 30px;
margin-left: 8%;
margin-top: 2%;
}
.column{
display: flex;
float: left;
margin: 2% 8%;
}
.column-style{
display: block;
margin-bottom: 1.5%;
margin-left: 4%;
background-color: #BAD7E9;
border-radius: 5%;
width: 250%;
text-align: center;
padding: 0.7%;
text-decoration: none;
color: #2B3467;
font-size: 20px;
box-shadow: 0 0 25px black;
}
.column-style:hover{
background-color: #EB455F;
color: #BAD7E9;
transition: 0.2s;
transition-timing-function: ease-in-out;
}
.columna{
display: flex;
float: left;
margin: 2% 8%;
}
.columna-style{
display: block;
margin-bottom: 1.5%;
margin-left: 4%;
background-color: #BAD7E9;
border-radius: 5%;
width: 225px;
text-align: center;
padding: 0.7%;
text-decoration: none;
color: #2B3467;
font-size: 20px;
box-shadow: 0 0 25px black;
}
.columna-style:hover{
background-color: #EB455F;
color: #BAD7E9;
transition: 0.2s;
transition-timing-function: ease-in-out;
}