-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhello.css
More file actions
55 lines (48 loc) · 908 Bytes
/
Copy pathhello.css
File metadata and controls
55 lines (48 loc) · 908 Bytes
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
#hello {
width: 80%;
display: flex;
flex-direction: column;
}
#hello-page {
width: 100%;
border-style: solid;
border-radius: 25px;
margin-top: 5vh;
margin-bottom: 5vh;
}
#hello-t {
background-color: red;
border-radius: 20px 20px 0 0;
}
#hello-t h1 {
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-size: 10vw;
text-align: center;
}
#hello-t h2 {
color: white;
font-size: 3vw;
text-align: center;
padding-bottom: 1vh;
}
#hello-p {
background-color: white;
font-family: 'Rock Salt';
font-size: 4vw;
font-weight: 800;
text-align: center;
padding-top: 5vh;
padding-bottom: 5vh;
}
#hello-b {
background-color: red;
width: 100%;
height: 3vh;
border-radius: 0 0 20px 20px;
}
#hello-text {
font-size: 2vw;
text-align: center;
padding-bottom: 5vh;
}