-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.css
74 lines (65 loc) · 1.26 KB
/
App.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
.App {
text-align: center;
background-image: url(./img/gray-bg.png);
height: 750px;
margin-left: 50px;
margin-right: 50px;
border-radius: 25px;
}
.App-logo {
animation: App-logo-spin 1 1s linear;
height: 80px;
}
.App-header {
background-image: url(./img/gray-bg.png);
height: 150px;
padding: 20px;
color: white;
border-radius: 25px;
border-bottom: 5px solid white;
}
.App-title {
font-size: 1.5em;
}
.Footer {
float:none;
margin-top: auto;
}
.topSelectableItems {
margin-bottom: 10px;
display: flex;
flex-direction: row;
}
.tarihLABEL {
font-size: 32px;
color: white;
}
.toplantiLABEL {
display: flex;
font-size: 32px;
color: white;
}
.App-intro {
margin-top: 30px;
margin-left: 30px;
margin-right: 30px;
border-radius: 20px;
font-size: large;
flex-direction: column-reverse;
}
.App-dropdown {
width:250px;
margin-top: 20px;
float:none;
margin-left: auto;
margin-right: auto;
color:
}
@keyframes App-logo-spin {
0% {transform:translateX(0) rotate(0deg);}
20% {transform:translateX(-10px) rotate(-2deg);}
40% {transform:translateX(10px) rotate(2deg);}
60% {transform:translateX(-10px) rotate(-2deg); }
80% {transform: translateX(10px) rotate(2deg);}
100%{transform: translateY(0) rotate(0deg);}
}