-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
73 lines (68 loc) · 1.3 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
69
70
71
72
73
.name-tag {
height: 280px;
width: 400px;
display:flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
background-color: white;
border-radius: 10px;
}
.top,.bottom{
background-color: red;
width: 100%;
}
.top{ border-radius: 10px 10px 0px 0px;
height: 175px;
}
.bottom {
background-color: red;
height: 125px;
border-radius: 0px 0px 10px 10px;
}
h1,
h2 {
text-align: center;
color:white;
font-family: Georgia, 'Times New Roman', Times, serif;
}
h1 {
text-transform: uppercase;
font-size: 3rem;
font-weight: 700;
}
h2 {
font-size: 2rem;
font-weight: normal;
}
.middle{
font-family: cursive;
background-color: white;
font-size: 2rem;
height: 200px;
}
body{
background-color: rgb(29, 35, 41);
}
.button{
font-family: cursive;
font-weight: 100;
color: rgba(5, 255, 255, 0.815);
background-color: slategray;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
border-radius: 20px;
}
.input{
background-color: rgb(10, 88, 165);
border-radius: 20px;
display:flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
color: snow;
border: snow;
border: 10px;
}