-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (39 loc) · 895 Bytes
/
index.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
body {
background-image: linear-gradient(-20deg, #e9defa 0%, #fbfcdb 100%);
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
}
#welcome {
font-size: 40px;
font-family: "PT Sans Narrow", sans-serif;
font-weight: 400;
font-style: normal;
position: relative;
text-align: center;
padding: 50px;
}
#startit {
font-size: 40px;
border-radius: 20px;
padding: 15px;
background-color: lightblue;
border: 1px solid grey;
box-shadow: 5px 5px 5px lightblue;
font-family: "PT Sans Narrow", sans-serif;
font-weight: 400;
font-style: normal;
cursor: pointer;
margin-bottom: 40px;
}
#startit:active {
transform: translateY(2px);
}
#note {
font-family: "PT Sans Narrow", sans-serif;
font-weight: 400;
font-style: normal;
font-size: 25px;
text-align: center;
}