-
Notifications
You must be signed in to change notification settings - Fork 0
/
swissStyle.css
83 lines (70 loc) · 1.46 KB
/
swissStyle.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
body {
color: white;
padding-left: 5%;
padding-right: 5%;
display: flex;
flex-direction: column;
background-color: #02001d;
justify-content: center;
}
.test {
display: flex;
flex-direction: column;
padding-left: 10%;
padding-right: 10%;
}
/*manages the current contesting tutorials*/
.chooserTable {
display: flex;
flex-direction: column;
grid-row-gap: 30px;
}
/*both tutorials*/
.chooser {
border-radius: 25px;
padding: 20px;
display: flex;
flex-direction: column;
background-image: linear-gradient(to bottom right, hsla(196, 79%, 35%, 0.953), rgba(2, 188, 110, 0.945));
}
#firstTutorial {
margin-top: 150px;
}
#secondTutorial {
margin-bottom: 150px;
}
/* gyro display*/
#gyro {
background-image: linear-gradient(to bottom right, hsla(196, 79%, 35%, 0.953), rgba(2, 188, 110, 0.945));
color: white;
text-align: center;
align-self: center;
border-radius: 25px;
padding: 5px;
}
.chooser > .day {
margin-top: 100px;
color: white;
font-family: Arial;
font-weight: bold;
text-align: center;
font-size: xx-large;
margin-bottom: 10px;
margin-top: 15px;
}
.chooser > .title {
color: white;
font-family: Arial;
font-weight: bold;
text-align: center;
margin-bottom: 10px;
margin-top: 15px;
}
.chooser > .room {
margin-top: 2px;
margin-bottom: 4px;
}
.chooser > .inner {
font-family: Arial;
color: white;
}