-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
100 lines (96 loc) · 1.62 KB
/
stylesheet.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
@charset "utf-8";
/* CSS Document */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
width: 100%;
height: 100vh;
background: linear-gradient(to left, rgb(52, 143, 80), rgb(86, 180, 211));
}
.header {
width: 100%;
height: 80px;
margin: auto;
padding: 20px;
background-color: rgba(0,0,0,0.70);
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
padding: 5px;
}
.logo h2 {
font-family: "euphoria-script";
font-weight: normal;
letter-spacing: 1px;
color: white;
font-size: 32px;
}
.logo:hover {
border-bottom: 2px solid white;
}
.navigation ul {
list-style: none;
display: flex;
justify-content: space-around;
}
.navigation ul li {
padding: 10px 20px;
}
.navigation ul li a {
text-decoration: none;
color: rgba(255,255,255,1.00);
letter-spacing: 1px;
}
.navigation ul li:hover {
border-top: 3px solid white;
}
table {
position:absolute;
top:40%;
left:50%;
transform:translate(-50%,-50%);
width: 90%;
margin: 5% auto;
height: auto;
color: white;
text-align: center;
transition:1s;
}
table tr {
height: 40px;
border: 2px solid rgba(0,0,0,1.00);
}
#name {
font-size:28px;
font-family:serif;
letter-spacing:2px;
word-spacing:2px;
background-color:rgba(34,34,34,1.00);
text-align:center;
}
table tr:nth-of-type(odd) {
background-color: rgba(143,141,141,0.50);
}
table tr:nth-of-type(even) {
background-color: rgba(0,0,0,0.5);
}
table tr td,th {
border: 1px solid black;
}
#foot {
width:50%;
background-color:rgba(0,0,0,0.00);
border:none;
}
.empty {
border:none;
}
#foot #result,#percentage {
background-color:rgba(34,34,34,1.00);
}