-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylesheet.css
More file actions
106 lines (106 loc) · 1.79 KB
/
stylesheet.css
File metadata and controls
106 lines (106 loc) · 1.79 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*here we define the table*/
table
{
height: 720px;
width: 720px;
text-align: center;
margin-right: auto;
margin-left: auto;
}
tr
{
width: 720px;
height: 72px;
}
.cell
{
height: 72px;
width: 72px;
background-color: transparent;
color: transparent;
box-shadow: 0px 0px 10px seagreen;
border: 5px solid seagreen;
}
.cell:hover
{
background-color: seagreen;
color: transparent;
}
.cell:active
{
color: white;
background-color: seagreen;
}
/*here we define the rest of the elements*/
#abouts
{
color: seagreen;
font-weight: bold;
width: 80%;
margin-left: 10%;
margin-right: 10%;
margin-top: 10%;
height: 100%;
margin-bottom: 10%;
font-size: 200%;
}
.next
{
width: 20%;
padding: 1%;
font-size: 150%;
border: 5px solid seagreen;
box-shadow: 0px 0px 10px seagreen;
margin-top: 5%;
margin-bottom: 5%;
background-color: transparent;
}
.next:hover
{
background-color: seagreen;
color: white;
box-shadow: 0px 0px 0px transparent;
}
/*here we define the body*/
body,html
{
text-align: center;
padding-bottom: 20%;
}
/*here we define the other elements*/
#test
{
width: 100%;
padding: 2%;
background-color: black;
color: white;
font-size: 150%;
}
#messages
{
text-align: left;
font-size: 150%;
color: seagreen;
width: 80%;
margin-left: auto;
margin-right: auto;
}
#reload
{
color: white;
background-color: seagreen;
width: 100%;
left: 0;
bottom: 0;
position: fixed;
padding-top: 1%;
padding-bottom: 2%;
font-size: 200%;
}
/*-------------------------------------------------here we utilise the display-toggle systems--------------------------------------------*/
#table,#accept_table,#see_result,#messages,#reload
{
display: none;
margin-left: auto;
margin-right: auto;
}