-
Notifications
You must be signed in to change notification settings - Fork 64
/
event1.css
53 lines (51 loc) · 911 Bytes
/
event1.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
@media only screen and (max-width: 760px){
#sections{
flex-direction: column;
}
#halves{
flex-direction: column-reverse;
}
#separator{
border: 0;
}
.left,.right,.first,.second{
width: 100%;
}
}
@media only screen and (min-width: 761px){
#sections{
flex-direction: row;
}
#halves{
flex-direction: row;
}
#separator{
border: 1px;
}
.first,.second{
width: 50%;
}
.left{
width: 75%;
}
.right{
width: 25%;
}
/* .nav-item {
display: none;
} */
}
.bttn{
transition-duration: 0.3s;
}
.bttn.hover{
transition: all 0.1s ease-in-out;
box-shadow: none;
padding:1.5px 2px 1.5px 2px;
box-shawdow: 0px 0px 10px 0.5px rgb(154,230,240);
}
.bttn{
align-self: centre;
border-radius:15%;
border-color: antiqewhite;
}