-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolorflip.css
91 lines (55 loc) · 941 Bytes
/
colorflip.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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.header
{
display: flex;
background-color: white;
justify-content: space-around;
height: 80px;
padding-top: 10px;
box-shadow: 15px 1px 10px 2px grey;
}
.header h1
{
color: tomato;
font-family:'Courier New', Courier, monospace;
}
ul{
list-style-type: none;
padding: 15px;
font-family: cursive;
color: coral;
text-shadow: 1px 2px 2px black;
}
li{
display: inline-block;
margin-right: 20px;
}
a{
text-decoration: none;
color: coral;
}
.descript
{
width: 100%;
height: 400px;
text-align: center;
padding-top: 250px;
}
.big
{
text-align: center;
font-family:Verdana, Geneva, Tahoma, sans-serif;
}
button{
outline: none;
border: 2px solid black;
border-radius: 20px;
width: 100px;
height: 40px;
margin-top: 20px;
}