-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTTT.css
More file actions
73 lines (66 loc) · 1.05 KB
/
TTT.css
File metadata and controls
73 lines (66 loc) · 1.05 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
body{
margin: 0;
background-color: #232323;
}
td {
width: 100px;
height: 100px;
}
.vertical {
border-left: 2px solid yellow;
border-right: 2px solid yellow;
}
.horizontal {
border-top: 2px solid yellow;
border-bottom: 2px solid yellow;
}
table {
margin: 0 auto;
margin-top: 0;
}
h1 {
text-align: center;
margin: 0;
background-color: steelblue;
}
#heading{
margin: 0 auto;
letter-spacing: 1px;
font-size: inherit;
font-size: 2.5em;
}
table{
margin-top: 5%;
}
.box{
font-size: 80px;
text-align: center;
color: red;
background-color: wheat;
}
.message{
width: 100%;
color: green;
text-align: center;
font-size: 4em;
}
#Btn{
text-align: center;
}
button{
border: none;
background: white;
text-transform: uppercase;
height: 200%;
font-weight: 700;
color: black;
letter-spacing: 1px;
font-size: inherit;
transition: all 0.3s;
outline: none;
padding: 10px;
}
button:hover{
color: white;
background: black;
}