-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (94 loc) · 1.72 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
104
105
106
107
108
109
110
*{
font-family :system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
color:white;
text-align:center;
}
.nav {
font-size : 30px;
min-width:200px;
max-width:200px;
text-align:center;
margin:auto;
}
.link {
text-decoration: none;
}
.image{
max-width:400px;
display: block;
border-radius: 20px 20px 20px 20px;
}
.logo{
margin-left: auto;
margin-right: auto;
max-width:250px;
}
.photo{
max-width:300px;
display: block;
border-radius: 20px 20px 20px 20px;
padding: 10px;
}
.center {
margin-left: auto;
margin-right: auto;
max-width:500px;
}
.page_header {
font-size : 80px;
white-space: nowrap;
}
.name_text {
font-size : 45px;
white-space: nowrap;
text-align: left;
line-height: 0px
}
.email_text {
font-size : 30px;
white-space: nowrap;
text-align: left;
vertical-align: top;
line-height: 0px
}
.section_header {
font-size :50px;
min-width:500px;
max-width:500px;
text-align:center;
margin:auto;
font-style:italic
}
.section_body {
font-size : 35px;
min-width:500px;
max-width:500px;
text-align:left;
margin:auto;
font-weight:lighter;
}
body {
background-color: black;
text-align: center;
}
.container {
display: flex;
align-items: center;
justify-content: center
}
.white_button, .red_button{
border-radius: 40px 40px 40px 40px;
padding: 20px;
width: 500px;
text-align: center;
color:black;
text-decoration: none;
font-weight: bold;
font-size: 35px;
}
.white_button {
background: #ABB8C3;
}
.red_button {
background: #C30443;
}