-
Notifications
You must be signed in to change notification settings - Fork 0
/
praxisprojekt.css
74 lines (64 loc) · 1.07 KB
/
praxisprojekt.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
html {
height: 100%;
}
body {
height: 100%;
margin: 0;
}
.main-container{
display: grid;
height: 100%;
grid-template-rows: 15% 85%;
}
.header {
background-color: lightgray;
text-align: center;
}
.form-container {
text-align: center;
margin: 1em 1em;
}
.tab {
display: none;
}
.run-submenu {
display: inline-block;
}
#button-container {
margin: 10px 0px;
height: 3em;
background-color: black;
}
.run-button {
background-color: black;
color: white;
outline: 0;
height: 100%;
width: 150px;
float: left;
border: none;
display: none;
}
.run-button:hover {
background-color: darkgray;
color: black;
}
select {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
outline: 0;
box-shadow: none;
border: 0 !important;
background: #2c3e50;
width: 20em;
height: 3em;
line-height: 3;
background: #2c3e50;
overflow: hidden;
border-radius: .25em;
color: #fff;
cursor: auto;
padding: 0 10px;
}