-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
103 lines (103 loc) · 1.75 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
*{
margin: 0;
padding: 0;
}
nav {
width: 100%;
height: 170px;
border-bottom: 3px solid black;
}
ul {
height: 100%;
width: 100%;
display: flex;
flex-flow: row;
justify-content: space-evenly;
align-items: center;
list-style: none;
color: black;
font-family: Tahoma;
font-size: 50px;
}
li {
cursor: pointer;
}
.appInfo {
width: 1100px;
height: 500px;
margin: auto;
margin-top: 100px;
border: 3px solid black;
border-radius: 30px;
}
.appInfoFlex {
height: 100%;
width: 100%;
display: flex;
flex-flow: column;
justify-content: space-evenly;
align-items: center;
color: black;
}
h2 {
font-size: 70px;
}
p {
width: 1000px;
font-size: 30px;
}
.buttons {
width: 1100px;
height: 150px;
display: flex;
flex-flow: row;
justify-content: space-evenly;
align-items: center;
margin: auto;
margin-top: 100px;
list-style-type: none;
}
.profile {
background-color: white;
width:300px;
height:150px;
border-radius: 100px;
border: 6px solid black;
display: flex;
flex-flow: row;
justify-content: space-evenly;
align-items: center;
cursor:pointer;
color: black;
}
.profile svg {
width: 60px;
height: 60px;
}
.profile p {
font-size: 45px;
font-weight: bold;
width: 145px;
}
.start {
background-color: black;
width:306px;
height:156px;
border-radius: 100px;
cursor:pointer;
color: white;
fill: white;
display: flex;
flex-flow: row;
justify-content: space-evenly;
align-items: center;
}
.start svg {
width: 60px;
height: 60px;
}
.start p {
font-size: 45px;
font-weight: bold;
width: 115px;
}