-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
68 lines (62 loc) · 1.07 KB
/
style.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
color: black;
}
#top{
background-color: white;
display: flex;
justify-content: space-between;
margin-right: 30px;
margin-left: 30px;
padding-bottom: 20px;
padding-top: 20px;
height: 10vh;
}
p{
font-size: 42px;
}
span{
color: rgb(95, 166, 224);
}
#background-section{
background-color: green;
width: 100vw;
height: 100vh;
color: white;
text-align: center;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
align-self: center;
justify-self: center;
}
#background{
background-color: black;
padding: 10px;
width: 35vw;
border-radius: 10px;
text-align: center;
display: none;
}
#motivation #motiQuote{
color: red;
}
#click-me{
width: 15vw;
height: 10vh;
border-radius: 10px;
margin-top: 20px;
font-size: 30px;
border: 4px solid black;
background-color: inherit;
}
#click-me:hover{
background-color: black;
color: white;
cursor: pointer;
}