forked from Informatyczek/EduRank
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
91 lines (77 loc) · 1.43 KB
/
Copy pathApp.css
File metadata and controls
91 lines (77 loc) · 1.43 KB
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
/*
kolory do uzycia na stronie
.color1 {color: #060b10;}
.color2 {color: #1f252d;}
.color3 {color: #394950;}
.color4 {color: #5a6c76;}
.color5 {color: #7c9da6;}
*/
* {
padding: 0px;
}
html {
height: 100%;
}
body {
background-color: #1f252d;
color: white;
height: 100%;
width: 100%;
}
#nav{
background-color: #1f252d;
width: 100%;
}
#menu {
width: 60%;
height: 6%;
background-color: red;
float: left;
text-align: justify; /* Wyrównanie tekstu do lewej i prawej strony */
}
#menu p {
display: inline-block;
margin-right: 6%;
font-size: 1.2em;
}
#user {
align-items: flex-end;
width: 40%; /* Szerokość nowego kontenera */
height: 6%; /* Wysokość - pełna wysokość okna przeglądarki */
background-color: blue; /* Kolor tła */
display: flex;
flex-direction: row;
justify-content:flex-end;
}
#main {
display: flex;
height: 86%;
width: 100%;
}
#ranking{
width: 15%; /* Szerokość nowego kontenera */
height: 100%;
left: 2%;
top: 2%;
background-color: blue;
border: 1px solid white;
}
#task {
width: 55%;
height: 100%;
border: 1px solid white;
}
#control {
width: 30%;
padding-top: 4%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-evenly;
}
#control p{
border: 1px solid white;
margin-left: 15%;
max-width: 45%;
font-size: 1.5em;
}